Commit 49468ce446f5634eb41db87cf7a483a8e9d385a5
Exists in
master
and in
1 other branch
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
README.md
... | ... | @@ -83,7 +83,7 @@ for you. Checkout [Hoptoad](http://hoptoadapp.com) from the guys over at |
83 | 83 | 2. Create & configure for Heroku |
84 | 84 | |
85 | 85 | gem install heroku |
86 | - heroku create | |
86 | + heroku create example-errbit --stack cedar | |
87 | 87 | heroku addons:add mongohq:free |
88 | 88 | heroku addons:add sendgrid:free |
89 | 89 | heroku config:add HEROKU=true |
... | ... | @@ -93,7 +93,7 @@ for you. Checkout [Hoptoad](http://hoptoadapp.com) from the guys over at |
93 | 93 | |
94 | 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 | 98 | 4. Enjoy! |
99 | 99 | ... | ... |