Skip to content

Instantly share code, notes, and snippets.

@opsb
Created April 2, 2011 10:52
Show Gist options
  • Save opsb/899396 to your computer and use it in GitHub Desktop.
Save opsb/899396 to your computer and use it in GitHub Desktop.
manage multiple heroku environment for same app
function stage() { heroku $@ --app $(basename `pwd`)-stage ;}
function production() { heroku $@ --app $(basename `pwd`)-production ;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment