Created
May 22, 2012 15:06
-
-
Save flomotlik/2769640 to your computer and use it in GitHub Desktop.
Efficient Heroku
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 h { heroku ${@:1:($#-1)} --app ${@: -1} ; } | |
| function hp { h $@ production_app_name ; } | |
| function hs { h $@ staging_app_name ; } | |
| alias hpc="hp run console" | |
| alias hsc="hs run console" | |
| alias hpl="hp logs -t" | |
| alias hsl="hs logs -t" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment