Commit 72eadff8ad2579f1f108b9ec341977761121bb28

Authored by Brandon Bloom
1 parent d2276ff3
Exists in master and in 1 other branch production

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