Commit c1a24d8873812081db8753261071576dd16634bb
Exists in
master
and in
1 other branch
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,6 +172,9 @@ heroku config:add HEROKU=true | ||
172 | heroku config:add SECRET_TOKEN="$(bundle exec rake secret)" | 172 | heroku config:add SECRET_TOKEN="$(bundle exec rake secret)" |
173 | heroku config:add ERRBIT_HOST=some-hostname.example.com | 173 | heroku config:add ERRBIT_HOST=some-hostname.example.com |
174 | heroku config:add ERRBIT_EMAIL_FROM=example@example.com | 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 | git push heroku master | 178 | git push heroku master |
176 | ``` | 179 | ``` |
177 | 180 |