Skip to content

Instantly share code, notes, and snippets.

@dpmccabe
Created October 7, 2020 16:00
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 dpmccabe/e2376b00ad42037521094143b37af778 to your computer and use it in GitHub Desktop.
Save dpmccabe/e2376b00ad42037521094143b37af778 to your computer and use it in GitHub Desktop.
Copy Heroku env vars to another app
heroku config -s -a from-app > ~/Desktop/env.txt
cat ~/Desktop/env.txt | tr '\n' ' ' | xargs heroku config:set -a to-app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment