This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Ralph Churchill (author)
Wed Jun 25 05:53:27 -0700 2008
bbot /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu May 29 06:48:05 -0700 2008 | [mrchucho] |
| |
README | Thu May 29 06:58:28 -0700 2008 | [mrchucho] |
| |
Rakefile | Tue Feb 05 16:14:07 -0800 2008 | [mrchucho] |
| |
TODO | Tue May 13 08:44:27 -0700 2008 | [mrchucho] |
| |
app/ | Wed Jun 25 05:53:27 -0700 2008 | [Ralph Churchill] |
| |
config/ | Thu May 29 06:58:28 -0700 2008 | [mrchucho] |
| |
db/ | Tue May 13 06:51:43 -0700 2008 | [mrchucho] |
| |
doc/ | Tue Feb 05 16:14:07 -0800 2008 | [mrchucho] |
| |
lib/ | Wed Feb 13 17:38:12 -0800 2008 | [mrchucho] |
| |
log/ | Thu May 29 06:48:05 -0700 2008 | [mrchucho] |
| |
public/ | Tue Jun 24 08:34:24 -0700 2008 | [mrchucho] |
| |
script/ | Tue Feb 05 16:14:07 -0800 2008 | [mrchucho] |
| |
test/ | Tue May 13 06:51:43 -0700 2008 | [mrchucho] |
| |
vendor/ | Wed May 28 19:43:03 -0700 2008 | [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




