Skip to content

Instantly share code, notes, and snippets.

@hilt86
Last active November 20, 2019 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hilt86/6e165dbb364b0579670dde434ac7289c to your computer and use it in GitHub Desktop.
Save hilt86/6e165dbb364b0579670dde434ac7289c to your computer and use it in GitHub Desktop.
heroku-tips-tricks

Copy Heroku config vars from one app to another

export

heroku config -s -a existing-heroku-app > config.txt

import

cat config.txt | tr '\n' ' ' | xargs heroku config:set -a new-heroku-app

Stolen from Emir Karşıyakalı

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment