Created
December 30, 2013 12:40
-
-
Save nabucosound/8181671 to your computer and use it in GitHub Desktop.
Script to copy environment variables from an existing heroku app to another one
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Source: http://blog.nonuby.com/blog/2012/07/05/copying-env-vars-from-one-heroku-app-to-another/ | |
set -e | |
sourceApp="$1" | |
targetApp="$2" | |
while read key value; do | |
key=${key%%:} | |
echo "Setting $key=$value" | |
heroku config:set "$key=$value" --app "$targetApp" | |
done < <(heroku config --app "$sourceApp" | sed -e '1d') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1-liner to copy all variables but the ones starting with
DATABASE_URL
orHEROKU_
(which are dynamically set by heroku):