public
Description: fork of git://gitorious.org/enki/mainline.git
Homepage: http://enkiblog.com/
Clone URL: git://github.com/quamen/enki.git
enki /
name age message
file .gitignore Loading commit data...
file FEATURES
file LICENSE
file README
file Rakefile
directory app/
directory config/ Fri Feb 29 03:25:07 -0800 2008 Admin API controller to publicize API key [xaviershay]
directory db/
directory lib/
directory log/
directory public/
directory script/
directory spec/
directory stories/ Fri Jan 04 04:31:19 -0800 2008 Say hello to rspec [Xavier Shay]
directory test/
directory vendor/
README
= Enki

A ruby on rails blogging app for the fashionable developer.

Preferences are for the masses. Any real coder knows the easiest and best way to customize something is by hacking code. 
Because you want your blog to be you, not bog standard install #4958 with 20 posts per page instead of 15. For this you 
need a clean, simple, easy to understand code base that stays out of your way. No liquid drops and templates hindering 
your path, no ugly PHP stylings burning your eyeballs.

== Quick Start

  git clone git://gitorious.org/enki/mainline.git
  cd enki
  git checkout -b myblog # Create a new work branch
  cp config/database.example.yml config/database.yml
  # Edit config/enki.yml and config/database.yml to taste
  rake db:migrate
  rake spec
  ./script/server
  # Load http://localhost:3000/admin in your browser

== More info

Enki is a compact, easily extendable base for your blog. It does this by being highly opinionated, for example:

- Public facing views should adhere to standards (XHTML, Atom)
- /yyyy/mm/dd/post-title is a good URL for your posts
- Live comment preview should be provided by default
- Google does search better than you or I
- You don't need a plugin system when you've got decent source control
- If you're not using OpenID you're a chump
- Hacking code is the easiest way to customize something

== Author

Xavier Shay
xavier@rhnh.net

== License

GPL - See LICENSE

Includes code from http://simplelog.net/ (admin layout)