Commit d420dcdb8dd3fb4cd2c7eadc8c6a7b56d6b6855a

Authored by Nathan B
2 parents a565844a 9d977274
Exists in master and in 1 other branch production

Merge pull request #65 from railsaholic/master

Updated README, steps reordering  in "Running locally" section
Showing 1 changed file with 6 additions and 5 deletions   Show diff stats
README.md
... ... @@ -52,15 +52,16 @@ for you. Checkout [Airbrake](http://airbrakeapp.com) from the guys over at
52 52  
53 53 **Running Locally:**
54 54  
55   - 1. Bootstrap Errbit. This will copy over config.yml and also seed the database.
  55 + 1. Install dependencies
56 56  
57   - rake errbit:bootstrap
  57 + bundle install
58 58  
59   - 2. Update the config.yml and mongoid.yml files with information about your environment
60   - 3. Install dependencies
  59 + 2. Bootstrap Errbit. This will copy over config.yml and also seed the database.
61 60  
62   - bundle install
  61 + rake errbit:bootstrap
63 62  
  63 + 3. Update the config.yml and mongoid.yml files with information about your environment
  64 +
64 65 4. Start Server
65 66  
66 67 script/rails server
... ...