Created
November 9, 2012 21:22
-
-
Save patbenatar/4048355 to your computer and use it in GitHub Desktop.
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
export HEROKU_STG_APP=stg-app-name | |
export HEROKU_PROD_APP=prod-app-name |
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
function hs() { heroku "$@" "-a" "$HEROKU_STG_APP" } | |
function hp() { heroku "$@" "-a" "$HEROKU_PROD_APP" } | |
alias push-stg="git push staging develop:master" | |
alias push-prod="git push production master" | |
# Source .heroku-apps if it exists | |
function source_heroku_apps { | |
if [ -e ".heroku-apps" ]; then | |
source .heroku-apps | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment