public
Description: Yet Another Blog Engine written in Rails
Homepage: http://www.mrchucho.net
Clone URL: git://github.com/mrchucho/bbot.git
Search Repo:
bbot /
name age message
folder .gitignore Thu May 29 06:48:05 -0700 2008 Setup some more sensible defaults [mrchucho]
folder README Thu May 29 06:58:28 -0700 2008 More instructions [mrchucho]
folder Rakefile Tue Feb 05 16:14:07 -0800 2008 Initial Import [mrchucho]
folder TODO Tue May 13 08:44:27 -0700 2008 * Caching for Pages [mrchucho]
folder app/ Wed Jun 25 05:53:27 -0700 2008 Fixed first pass at spam protection: hidden fie... [Ralph Churchill]
folder config/ Thu May 29 06:58:28 -0700 2008 More instructions [mrchucho]
folder db/ Tue May 13 06:51:43 -0700 2008 * Implemented Pages as application objects [mrchucho]
folder doc/ Tue Feb 05 16:14:07 -0800 2008 Initial Import [mrchucho]
folder lib/ Wed Feb 13 17:38:12 -0800 2008 * Added some notes. [mrchucho]
folder log/ Thu May 29 06:48:05 -0700 2008 Setup some more sensible defaults [mrchucho]
folder public/ Tue Jun 24 08:34:24 -0700 2008 Implemented a first pass at some comment spam p... [mrchucho]
folder script/ Tue Feb 05 16:14:07 -0800 2008 Initial Import [mrchucho]
folder test/ Tue May 13 06:51:43 -0700 2008 * Implemented Pages as application objects [mrchucho]
folder vendor/ Wed May 28 19:43:03 -0700 2008 * Deleted site-specific code and files [mrchucho]
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) and any other dependencies (e.g. sqlite3) installed
* Setup a database configuration: use config/database.yml.sample as a starting point
* Create a secret for the cookie-based session store: run "rake secret" and copy the generated value into 
config/environment.rb:
    config.action_controller.session = {
        :session_key => '_bbot_session',
        :secret      => '<YOUR SECRET HERE>'
    }
* 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