mrchucho / bbot

Yet Another Blog Engine written in Rails

This URL has Read+Write access

mrchucho (author)
Thu May 29 06:48:05 -0700 2008
commit  ac6cc1496b6994c09f23c64779bf4ef43ded4d66
tree    20af32f2b41a7cead7db0b6f7004d0d73532ec16
parent  3cf16185ae3c7e0bea31cae2145dd21761f663ab
bbot /
README
== bbot
bbot is Yet Another Blog Engine written in Rails. bbot is simple, but
featureful; exactly what I (you) need and nothing more.

== bbot Features
* Posts, comments and static pages
* Friendly permalinks
* Comment moderation and preview before submit
* Save and manage drafts
* Textile formatting of posts and comments
* RSS and Atom feeds
* Simple, effective caching
* RESTful

== Setup bbot
* Make sure you have Rails 2.0.2 (or greater) installed as well as any other dependencies (e.g. sqlite3)
* Setup a database configuration: use config/database.yml.sample as a starting point
* rake db:migrate
* script/server 

== Using and Customizing bbot
* bbot is designed in a RESTful and (hopefully) intuitive manner:
    ** To create a post: http://<host>/posts/new
    ** To moderate comments: http://<host>/moderations
    ** To modify a draft: http://<host>/drafts
    ** Setup your own static pages: http://<host>/pages/new 
* Create a user account (necessary for posting, moderating and creating pages):
    $ cd bbot
    $ script/console
    >> User.create(:login => "blogger", :email => "blogger@example.org", :password => "password", :password_confirmation 
    => "password")
* Set site-specific parameters: modify config/initializers/blog.rb
* Modify config.action_controller.session: session_key and secret