README.md in slices-1.0.2 vs README.md in slices-1.0.3

- old
+ new

@@ -1,38 +1,27 @@ # Slices CMS -In-house CMS of [With Associates](http://withassociates.com/) +In-house CMS of [With Associates](http://withassociates.com/). ## Starting a new Slices project Slices requires Ruby, MongoDB and ImageMagick. If you don't have them installed, follow this [guide](https://github.com/withassociates/slices/wiki/Installation.md) before beginning. -We'll need to checkout the Slices project, install the relevant gems using Bundler and use a Rails template to create the new project: - - $ cd ~/Projects # or wherever you store git repositories - $ git clone git@github.com:withassociates/slices.git - $ cd slices - $ gem install bundler - $ bundle install - -Or if you have Slices already installed: - - $ cd ~/Projects/slices # or wherever you store git repositories - $ git pull - $ bundle install - Now we're ready to create the Slices project: $ cd ~/Projects - $ gem install rails -v '~> 3.2.0' - $ rails new mywebsite -JOT -m ~/Projects/slices/lib/generators/templates/slices.rb + $ rails _3.2.16_ new mywebsite -O + $ cd ~/Projects/mywebsite -At the end of this process we should have a new Slices project with a git repository created, gems installed, database seeded and ready to run: +Add 'slices' to the Gemfile of your new project: - $ cd ~/Projects/mywebsite - $ foreman start + gem 'slices' -Visit http://localhost:5000/admin to begin using Slices. +Run `rails generate slices:install` in the terminal and follow the instructions. + +If you intend to deploy your Slices app to Heroku, run `rails generate slices:install --heroku` to make life easier. + +You're ready to go! Run `rails server` and visit http://localhost:3000/admin to begin using Slices. The next step is to create some [slices](https://github.com/withassociates/slices/wiki/Creating-Slices) - there are more guides in the [Wiki](https://github.com/withassociates/slices/wiki). ## Code Status