Erich Smith | 17aaa9c | 2012-05-21 23:52:47 -0400 | [diff] [blame] | 1 | cite 'about-alias' |
| 2 | about-alias 'heroku task abbreviations' |
zerobearing2 | 3802bcc | 2010-10-06 17:42:29 -0700 | [diff] [blame] | 3 | |
| 4 | # heroku |
| 5 | alias h='heroku' |
| 6 | alias hl='heroku list' |
| 7 | alias hi='heroku info' |
| 8 | alias ho='heroku open' |
| 9 | |
| 10 | # dynos and workers |
| 11 | alias hd='heroku dynos' |
| 12 | alias hw='heroku workers' |
| 13 | |
| 14 | # rake console |
| 15 | alias hr='heroku rake' |
| 16 | alias hcon='heroku console' |
| 17 | |
| 18 | # new and restart |
| 19 | alias hnew='heroku create' |
| 20 | alias hrestart='heroku restart' |
| 21 | |
| 22 | # logs |
| 23 | alias hlog='heroku logs' |
| 24 | alias hlogs='heroku logs' |
| 25 | |
| 26 | # maint |
| 27 | alias hon='heroku maintenance:on' |
| 28 | alias hoff='heroku maintenance:off' |
| 29 | |
| 30 | # heroku configs |
| 31 | alias hc='heroku config' |
| 32 | alias hca='heroku config:add' |
| 33 | alias hcr='heroku config:remove' |
| 34 | alias hcc='heroku config:clear' |