ABCDEFGHIJKLMNOPQRST
1
Heroku Cheatsheet
2
CommandDescription
3
Basics
4
heroku updateUpdate Command-line Tool
5
heroku helpHelp
6
Get Started
7
heroku create --stack cedar [<appname>]Create App
8
git push heroku masterDeploy App
9
heroku openOpen App in Web Browser
10
Useful Info About Your App
11
heroku infoBasic App Info
12
heroku configView App Config
13
heroku psShow State of App
14
heroku logsShow App Logs
15
Advanced (Run Tasks/Database/Scaling)
16
heroku run rake task:nameRun task on Heroku (i.e. Rake tasks)
17
heroku db:pull
heroku db:push
Pull/Push Database
(Use with Caution! Potentially Destructive.)
18
heroku ps:scale web=1Scale Web Process
19
heroku config:add TZ=America/VancouverSet timezone for app. Use TZ time zones from
http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
20
21
For more, see here: http://devcenter.heroku.com/categories/command-line(No Copyright) 2012 - http://matthewruten.com
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100