Commit c1a24d8873812081db8753261071576dd16634bb

Authored by Cyril Mougel
2 parents 1d0e19b3 0c9e5d5a
Exists in master and in 1 other branch production

Merge pull request #573 from jamescmartinez/master

Allow Heroku to access ENV variables during asset compilation
Showing 1 changed file with 3 additions and 0 deletions   Show diff stats
README.md
... ... @@ -172,6 +172,9 @@ heroku config:add HEROKU=true
172 172 heroku config:add SECRET_TOKEN="$(bundle exec rake secret)"
173 173 heroku config:add ERRBIT_HOST=some-hostname.example.com
174 174 heroku config:add ERRBIT_EMAIL_FROM=example@example.com
  175 +# This next line is required to access env variables during asset compilation.
  176 +# For more info, go to this link: https://devcenter.heroku.com/articles/labs-user-env-compile
  177 +heroku labs:enable user-env-compile
175 178 git push heroku master
176 179 ```
177 180  
... ...