Commit 079a8ce8eb5cf710e26c6fbf2902156c59410f3a

Authored by Cyril Mougel
1 parent 7de482ac
Exists in master and in 1 other branch production

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
@@ -156,7 +156,9 @@ git clone http://github.com/errbit/errbit.git @@ -156,7 +156,9 @@ git clone http://github.com/errbit/errbit.git
156 156
157 ```bash 157 ```bash
158 gem install heroku 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 heroku addons:add mongolab:sandbox 162 heroku addons:add mongolab:sandbox
161 heroku addons:add sendgrid:starter 163 heroku addons:add sendgrid:starter
162 heroku config:add HEROKU=true 164 heroku config:add HEROKU=true
@@ -325,6 +327,7 @@ When upgrading Errbit, please run: @@ -325,6 +327,7 @@ When upgrading Errbit, please run:
325 git pull origin master # assuming origin is the github.com/errbit/errbit repo 327 git pull origin master # assuming origin is the github.com/errbit/errbit repo
326 bundle install 328 bundle install
327 rake db:migrate 329 rake db:migrate
  330 +rake assets:precompile
328 ``` 331 ```
329 332
330 If we change the way that data is stored, this will run any migrations to bring your database up to date. 333 If we change the way that data is stored, this will run any migrations to bring your database up to date.