Provides a way for you to push/pull your Heroku environment to use locally.
Add the heroku gem plugin:
$ heroku plugins:install git://github.com/ddollar/heroku-config.git
heroku-config installed
Add the following to .gitignore
:
.env
# by default, existing keys will not be overwritten
$ heroku config:pull
Config for example written to .env
# optional --overwrite allows you to have the pull overwrite keys
$ heroku config:pull --overwrite
Config for example written to .env
# --interactive will prompt for each value to be overwritten
$ heroku config:pull --overwrite --interactive
BUNDLE_DISABLE_SHARED_GEMS: 1
Overwite? (y/N)
$ heroku config:push
Config in .env written to example
Your environment will be stored locally in a file named .env
. This
file can be read by foreman to load
the local environment for your app.
Please remember to not commit your .env
file to your repository.
MIT License
David Dollar ddollar@gmail.com