Commit 079a8ce8eb5cf710e26c6fbf2902156c59410f3a
1 parent
7de482ac
Exists in
master
and in
1 other branch
Add some information in readme
* Information about the stack and buildpack on heroku create command * Information about the compiling of asset when you upgrade see #543
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
README.md
... | ... | @@ -156,7 +156,9 @@ git clone http://github.com/errbit/errbit.git |
156 | 156 | |
157 | 157 | ```bash |
158 | 158 | gem install heroku |
159 | -heroku create example-errbit --stack cedar | |
159 | +heroku create example-errbit | |
160 | +# If you really want, you can define your stack and your buildpack. the default is good to us : | |
161 | +# heroku create example-errbit --stack cedar --buildpack https://github.com/heroku/heroku-buildpack-ruby.git | |
160 | 162 | heroku addons:add mongolab:sandbox |
161 | 163 | heroku addons:add sendgrid:starter |
162 | 164 | heroku config:add HEROKU=true |
... | ... | @@ -325,6 +327,7 @@ When upgrading Errbit, please run: |
325 | 327 | git pull origin master # assuming origin is the github.com/errbit/errbit repo |
326 | 328 | bundle install |
327 | 329 | rake db:migrate |
330 | +rake assets:precompile | |
328 | 331 | ``` |
329 | 332 | |
330 | 333 | If we change the way that data is stored, this will run any migrations to bring your database up to date. | ... | ... |