Skip to content

Instantly share code, notes, and snippets.

@flomotlik
Created May 22, 2012 15:06
Show Gist options
  • Select an option

  • Save flomotlik/2769640 to your computer and use it in GitHub Desktop.

Select an option

Save flomotlik/2769640 to your computer and use it in GitHub Desktop.
Efficient Heroku
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