Skip to content

Instantly share code, notes, and snippets.

View jamesr2323's full-sized avatar

James Rees jamesr2323

  • ChangeLab
  • London
View GitHub Profile
@jamesr2323
jamesr2323 / heroku_env_copy.sh
Created May 24, 2017 00:56 — forked from nabucosound/heroku_env_copy.sh
Script to copy environment variables from an existing heroku app to another one
#!/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"
config=""