-
Notifications
You must be signed in to change notification settings - Fork 51
/
INSTALL
executable file
·19 lines (13 loc) · 959 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
======================
Welcome to Comatose!
======================
From here you'll want to run:
$ rails generate comatose
NOTE: The generator will add the default comatose routes to the top of your routes.rb file. It will also add an example route mapping for cms pages, however this will be commented out.
You'll want to move `comatose_admin` and `#comatose_root '', :layout => comatose_content , :use_cache => false` to the bottom of your routes block. You'll want to modify or remove the # for the example route mapping for cms pages.
The generator will add several required gems to your GemFile acts_as_tree, acts_as_list and acts_as_versioned gems!
When that's finished, run:
$ rake db:migrate
$ bundle install
That's it for the Comatose setup!
Be sure to read the README file, and the 'Getting Started' guide. They are located at vendor/plugins/comatose/README and http://comatose.rubyforge.org/getting-started-guide respectively.