public
Description: Simple blogging engine written in Ruby on Rails
Homepage: http://simplelog.net
Clone URL: git://github.com/rbazinet/simplelog.git
rbazinet (author)
Tue Dec 02 06:48:14 -0800 2008
commit  4d02f104fde6bd32eac8c6379b2d653f208c44a6
tree    0513d9886fc28248a685449f1d5d6cea8ce0659a
parent  b5fdd4f5608d440f07b02c7f616241a78359dcac
simplelog / README
100644 28 lines (17 sloc) 1.511 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
SimpleLog is a simple Ruby on Rails weblog application with support for comments, tagging, archiving and quick-search. It features a simple admin section with authentication and a focus on writing over all else.
 
SimpleLog was written by Garrett Murray, maintained by Rob Bazinet and released under the GPL license. In short, SimpleLog is free. Free as in freedom. See the License for more.
 
Installation
------------
 
1. Get a copy of the source from the Git repository, chmod files:
 
chmod 755 log/
chmod 755 theme_backup/
chmod 755 public/dispatch.fcgi
 
2. Set up databases and configure your settings in config/database.yml
 
2a. A note on databases: You should use the same database for development and production in SimpleLog, unless you plan to make significant changes to the app and you want to truly run in development mode. You should create a test database if you wish to run the tests to make sure SimpleLog is working correctly before running it (this is recommended but isn't required).
 
2b. If you're going to use PostgreSQL, you should use the database_postgres.yml file and rename it database.yml instead. It has some default info for connecting to PostgreSQL.
 
3. Configure two settings in config/server.rb
 
4. Run the SimpleLog migration task to import the DB schema:
rake simplelog:install
 
Or, if you want to be safe and run tests, make sure your test DB exists and then run the following rake task instead:
rake simplelog:install:tested
 
5. Start your server (if running locally).