Skip to content

Instantly share code, notes, and snippets.

View michelegera's full-sized avatar
👨‍💻
Working from home

Michele Gerarduzzi michelegera

👨‍💻
Working from home
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=""