Commit 49468ce446f5634eb41db87cf7a483a8e9d385a5

Authored by Nick Recobra
2 parents d2276ff3 72eadff8
Exists in master and in 1 other branch production

Merge pull request #45 from brandonbloom/patch-2

Corrected Heroku instructions for Cedar stack and a named app.
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
@@ -83,7 +83,7 @@ for you. Checkout [Hoptoad](http://hoptoadapp.com) from the guys over at @@ -83,7 +83,7 @@ for you. Checkout [Hoptoad](http://hoptoadapp.com) from the guys over at
83 2. Create & configure for Heroku 83 2. Create & configure for Heroku
84 84
85 gem install heroku 85 gem install heroku
86 - heroku create 86 + heroku create example-errbit --stack cedar
87 heroku addons:add mongohq:free 87 heroku addons:add mongohq:free
88 heroku addons:add sendgrid:free 88 heroku addons:add sendgrid:free
89 heroku config:add HEROKU=true 89 heroku config:add HEROKU=true
@@ -93,7 +93,7 @@ for you. Checkout [Hoptoad](http://hoptoadapp.com) from the guys over at @@ -93,7 +93,7 @@ for you. Checkout [Hoptoad](http://hoptoadapp.com) from the guys over at
93 93
94 3. Seed the DB (_NOTE_: No bootstrap task is used on Heroku!) 94 3. Seed the DB (_NOTE_: No bootstrap task is used on Heroku!)
95 95
96 - heroku rake db:seed 96 + heroku run rake db:seed
97 97
98 4. Enjoy! 98 4. Enjoy!
99 99