@sebastienrousseau/dotfiles 0.2.460 → 0.2.462
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +115 -91
- package/dist/Makefile +4 -3
- package/dist/bin/backup.d.ts.map +1 -1
- package/dist/bin/backup.js +3 -2
- package/dist/bin/backup.js.map +1 -1
- package/dist/bin/constants.d.ts +2 -2
- package/dist/bin/constants.d.ts.map +1 -1
- package/dist/bin/constants.js +1 -1
- package/dist/bin/constants.js.map +1 -1
- package/dist/bin/copy.d.ts.map +1 -1
- package/dist/bin/copy.js +2 -1
- package/dist/bin/copy.js.map +1 -1
- package/dist/bin/dotfiles.d.ts.map +1 -1
- package/dist/bin/dotfiles.js +1 -1
- package/dist/bin/dotfiles.js.map +1 -1
- package/dist/bin/download.d.ts +2 -2
- package/dist/bin/download.d.ts.map +1 -1
- package/dist/bin/download.js +2 -1
- package/dist/bin/download.js.map +1 -1
- package/dist/bin/index.js +1 -1
- package/dist/bin/index.js.map +1 -1
- package/dist/bin/transfer.d.ts.map +1 -1
- package/dist/bin/transfer.js +1 -1
- package/dist/bin/transfer.js.map +1 -1
- package/dist/bin/unpack.d.ts.map +1 -1
- package/dist/bin/unpack.js +1 -1
- package/dist/bin/unpack.js.map +1 -1
- package/dist/filesizes.txt +332 -288
- package/dist/lib/aliases/archives/archives.aliases.sh +42 -0
- package/dist/lib/aliases/clear/clear.aliases.sh +23 -0
- package/dist/lib/aliases/configuration/configuration.aliases.sh +12 -0
- package/dist/lib/aliases/default/default.aliases.sh +37 -173
- package/dist/lib/aliases/dig/dig.aliases.sh +19 -0
- package/dist/lib/aliases/diskusage/diskusage.aliases.sh +16 -0
- package/dist/lib/aliases/editor/editor.aliases.sh +19 -0
- package/dist/lib/aliases/find/find.aliases.sh +24 -0
- package/dist/lib/aliases/gcloud/gcloud.aliases.sh +120 -116
- package/dist/lib/aliases/git/git.aliases.sh +341 -335
- package/dist/lib/aliases/gnu/gnucoreutls-aliases.sh +111 -0
- package/dist/lib/aliases/heroku/heroku.aliases.sh +713 -710
- package/dist/lib/aliases/interactive/interactive.aliases.sh +14 -0
- package/dist/lib/aliases/jekyll/jekyll.aliases.sh +49 -46
- package/dist/lib/aliases/list/list.aliases.sh +33 -0
- package/dist/lib/aliases/make/make.aliases.sh +15 -0
- package/dist/lib/aliases/mkdir/mkdir.aliases.sh +13 -0
- package/dist/lib/aliases/navigation/navigation.aliases.sh +23 -0
- package/dist/lib/aliases/npm/npm.aliases.sh +24 -0
- package/dist/lib/aliases/permission/permission.aliases.sh +28 -0
- package/dist/lib/aliases/pnpm/pnpm.aliases.sh +38 -38
- package/dist/lib/aliases/ps/ps.aliases.sh +12 -0
- package/dist/lib/aliases/rsync/rsync.aliases.sh +9 -0
- package/dist/lib/aliases/rust/rust.aliases.sh +50 -0
- package/dist/lib/aliases/subversion/subversion.aliases.sh +42 -119
- package/dist/lib/aliases/sudo/sudo.aliases.sh +11 -0
- package/dist/lib/aliases/tmux/tmux.aliases.sh +13 -10
- package/dist/lib/aliases/update/update.aliases.sh +38 -0
- package/dist/lib/aliases/uuid/uuid.aliases.sh +10 -0
- package/dist/lib/aliases/wget/wget.aliases.sh +13 -0
- package/dist/lib/aliases.sh +7 -3
- package/dist/lib/configurations/bash/bashrc +4 -3
- package/dist/lib/configurations/curl/curlrc +3 -2
- package/dist/lib/configurations/default/color.sh +3 -2
- package/dist/lib/configurations/default/constants.sh +10 -9
- package/dist/lib/configurations/default/editor.sh +3 -2
- package/dist/lib/configurations/default/prompt.sh +3 -2
- package/dist/lib/configurations/input/inputrc +3 -2
- package/dist/lib/configurations/nano/nanorc +3 -2
- package/dist/lib/configurations/profile/profile +3 -2
- package/dist/lib/configurations/tmux/default +3 -2
- package/dist/lib/configurations/tmux/display +3 -2
- package/dist/lib/configurations/tmux/linux +3 -2
- package/dist/lib/configurations/tmux/navigation +3 -2
- package/dist/lib/configurations/tmux/panes +3 -2
- package/dist/lib/configurations/tmux/theme +4 -3
- package/dist/lib/configurations/tmux/tmux +3 -2
- package/dist/lib/configurations/tmux/vi +3 -2
- package/dist/lib/configurations/vim/vimrc +1 -1
- package/dist/lib/configurations/wget/wgetrc +3 -2
- package/dist/lib/configurations/zsh/zshrc +6 -5
- package/dist/lib/configurations.sh +3 -2
- package/dist/lib/functions/cdls.sh +4 -10
- package/dist/lib/functions/changediskpwd.tmp +5 -3
- package/dist/lib/functions/code.tmp +5 -3
- package/dist/lib/functions/countdown.tmp +3 -2
- package/dist/lib/functions/curlheader.sh +6 -5
- package/dist/lib/functions/curltime.sh +8 -6
- package/dist/lib/functions/encode64.sh +3 -2
- package/dist/lib/functions/environment.sh +3 -2
- package/dist/lib/functions/extract.sh +3 -2
- package/dist/lib/functions/genpwd.sh +3 -2
- package/dist/lib/functions/goto.sh +3 -2
- package/dist/lib/functions/hidehiddenfiles.sh +3 -2
- package/dist/lib/functions/history-all.tmp +3 -2
- package/dist/lib/functions/hostinfo.sh +3 -2
- package/dist/lib/functions/hstats.sh +3 -2
- package/dist/lib/functions/httpdebug.sh +3 -2
- package/dist/lib/functions/keygen.sh +3 -2
- package/dist/lib/functions/last.sh +3 -2
- package/dist/lib/functions/logout.sh +3 -2
- package/dist/lib/functions/lowercase.sh +3 -2
- package/dist/lib/functions/macos.sh +3 -2
- package/dist/lib/functions/matrix.sh +3 -2
- package/dist/lib/functions/{mcd.sh → mcd.tmp} +3 -2
- package/dist/lib/functions/mount_read_only.sh +3 -2
- package/dist/lib/functions/myproc.sh +3 -2
- package/dist/lib/functions/prependpath.sh +3 -2
- package/dist/lib/functions/print.tmp +3 -2
- package/dist/lib/functions/ql.sh +3 -2
- package/dist/lib/functions/rd.sh +3 -2
- package/dist/lib/functions/remove_disk.sh +3 -2
- package/dist/lib/functions/ren.sh +3 -2
- package/dist/lib/functions/rm.tmp +3 -2
- package/dist/lib/functions/rps.tmp +3 -2
- package/dist/lib/functions/showhiddenfiles.sh +3 -2
- package/dist/lib/functions/size.sh +3 -2
- package/dist/lib/functions/stopwatch.sh +3 -2
- package/dist/lib/functions/trash.tmp +3 -2
- package/dist/lib/functions/tree.tmp +3 -2
- package/dist/lib/functions/uppercase.sh +3 -2
- package/dist/lib/functions/uuidgen.tmp +2 -1
- package/dist/lib/functions/view-source.sh +3 -2
- package/dist/lib/functions/vscode.sh +3 -2
- package/dist/lib/functions/whoisport.sh +3 -2
- package/dist/lib/functions/zipf.sh +3 -2
- package/dist/lib/functions.sh +3 -2
- package/dist/lib/history.sh +3 -2
- package/dist/lib/paths/ant/ant.paths.sh +3 -2
- package/dist/lib/paths/default/default.paths.sh +3 -2
- package/dist/lib/paths/homebrew/homebrew.paths.sh +3 -2
- package/dist/lib/paths/java/java.paths.sh +4 -3
- package/dist/lib/paths/maven/maven.paths.sh +3 -2
- package/dist/lib/paths/node/node.paths.sh +3 -2
- package/dist/lib/paths/nvm/nvm.paths.sh +3 -2
- package/dist/lib/paths/pnpm/pnpm.paths.sh +3 -2
- package/dist/lib/paths/python/python.paths.sh +3 -2
- package/dist/lib/paths/ruby/ruby.paths.sh +3 -2
- package/dist/lib/paths/tmux/tmux.paths.sh +3 -2
- package/dist/lib/paths.sh +3 -2
- package/dist/scripts/backup.sh +8 -3
- package/dist/scripts/banner.sh +3 -2
- package/dist/scripts/build.sh +3 -2
- package/dist/scripts/clean.sh +3 -2
- package/dist/scripts/compile.sh +3 -2
- package/dist/scripts/copy.sh +3 -2
- package/dist/scripts/dotfiles.sh +3 -2
- package/dist/scripts/download.sh +3 -2
- package/dist/scripts/help.sh +3 -2
- package/dist/scripts/ssh.sh +54 -0
- package/dist/scripts/unpack.sh +3 -2
- package/package.json +3 -2
- package/dist/lib/exit.sh +0 -9
|
@@ -1,1031 +1,1034 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
|
-
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.
|
|
3
|
-
#
|
|
2
|
+
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.462) - https://dotfiles.io
|
|
3
|
+
# Made with ♥ in London, UK by @sebastienrousseau
|
|
4
|
+
# Copyright (c) 2015-2022. All rights reserved
|
|
4
5
|
# License: MIT
|
|
5
6
|
|
|
6
7
|
# 🅷🅴🆁🅾🅺🆄 🅰🅻🅸🅰🆂🅴🆂 - Heroku aliases.
|
|
8
|
+
if command -v heroku &>/dev/null; then
|
|
9
|
+
# Sections:
|
|
10
|
+
#
|
|
11
|
+
# 1. Heroku aliases.
|
|
12
|
+
# 1.1 Heroku Access aliases.
|
|
13
|
+
# 1.2 Heroku Addons aliases.
|
|
14
|
+
# 1.3 Heroku Apps aliases.
|
|
15
|
+
# 1.4 Heroku Auth aliases.
|
|
16
|
+
# 1.5 Heroku Authorizations aliases.
|
|
17
|
+
# 1.6 Heroku Authorizations aliases.
|
|
18
|
+
# 1.7 Heroku Certs aliases.
|
|
19
|
+
# 1.8 Heroku ci aliases.
|
|
20
|
+
# 1.9 Heroku config aliases.
|
|
21
|
+
#
|
|
22
|
+
# 2. Heroku Container aliases.
|
|
23
|
+
# 2.1 Heroku Domains aliases.
|
|
24
|
+
# 2.2 Heroku Drains aliases.
|
|
25
|
+
# 2.3 Heroku Dyno aliases.
|
|
26
|
+
# 2.4 Heroku Features aliases.
|
|
27
|
+
# 2.5 Heroku Git aliases.
|
|
28
|
+
# 2.6 Heroku Keys aliases.
|
|
29
|
+
# 2.7 Heroku Maintenance aliases.
|
|
30
|
+
# 2.8 Heroku Members aliases.
|
|
31
|
+
# 2.9 Heroku pg aliases.
|
|
32
|
+
#
|
|
33
|
+
# 3. Heroku Pipelines aliases.
|
|
34
|
+
# 3.1 Heroku ps aliases.
|
|
35
|
+
# 3.2 Heroku redis aliases.
|
|
36
|
+
# 3.3 Heroku Spaces aliases.
|
|
37
|
+
# 3.4 Heroku Webhooks aliases.
|
|
38
|
+
#
|
|
39
|
+
# Made with ♥ in London, UK by @sebastienrousseau
|
|
40
|
+
# Copyright (c) 2015-2022. All rights reserved
|
|
41
|
+
# Licensed under the MIT license
|
|
42
|
+
#
|
|
43
|
+
|
|
44
|
+
## ----------------------------------------------------------------------------
|
|
45
|
+
## 1. Heroku Core aliases
|
|
46
|
+
## ----------------------------------------------------------------------------
|
|
47
|
+
|
|
48
|
+
## ----------------------------------------------------------------------------
|
|
49
|
+
## 1.1 Heroku Access aliases.
|
|
50
|
+
## ----------------------------------------------------------------------------
|
|
7
51
|
|
|
8
|
-
#
|
|
9
|
-
|
|
10
|
-
# 1. Heroku aliases.
|
|
11
|
-
# 1.1 Heroku Access aliases.
|
|
12
|
-
# 1.2 Heroku Addons aliases.
|
|
13
|
-
# 1.3 Heroku Apps aliases.
|
|
14
|
-
# 1.4 Heroku Auth aliases.
|
|
15
|
-
# 1.5 Heroku Authorizations aliases.
|
|
16
|
-
# 1.6 Heroku Authorizations aliases.
|
|
17
|
-
# 1.7 Heroku Certs aliases.
|
|
18
|
-
# 1.8 Heroku ci aliases.
|
|
19
|
-
# 1.9 Heroku config aliases.
|
|
20
|
-
#
|
|
21
|
-
# 2. Heroku Container aliases.
|
|
22
|
-
# 2.1 Heroku Domains aliases.
|
|
23
|
-
# 2.2 Heroku Drains aliases.
|
|
24
|
-
# 2.3 Heroku Dyno aliases.
|
|
25
|
-
# 2.4 Heroku Features aliases.
|
|
26
|
-
# 2.5 Heroku Git aliases.
|
|
27
|
-
# 2.6 Heroku Keys aliases.
|
|
28
|
-
# 2.7 Heroku Maintenance aliases.
|
|
29
|
-
# 2.8 Heroku Members aliases.
|
|
30
|
-
# 2.9 Heroku pg aliases.
|
|
31
|
-
#
|
|
32
|
-
# 3. Heroku Pipelines aliases.
|
|
33
|
-
# 3.1 Heroku ps aliases.
|
|
34
|
-
# 3.2 Heroku redis aliases.
|
|
35
|
-
# 3.3 Heroku Spaces aliases.
|
|
36
|
-
# 3.4 Heroku Webhooks aliases.
|
|
37
|
-
#
|
|
38
|
-
# Copyright (c) Sebastien Rousseau 2022. All rights reserved
|
|
39
|
-
# Licensed under the MIT license
|
|
40
|
-
#
|
|
52
|
+
# hk: Heroku CLI command shortcut.
|
|
53
|
+
alias hkk='heroku'
|
|
41
54
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
## ----------------------------------------------------------------------------
|
|
55
|
+
# hka: Add new users to your app.
|
|
56
|
+
alias hka='heroku access:add'
|
|
45
57
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
## ----------------------------------------------------------------------------
|
|
58
|
+
# hkau: Update existing collaborators on an team app.
|
|
59
|
+
alias hkau='heroku access:update'
|
|
49
60
|
|
|
50
|
-
#
|
|
51
|
-
alias
|
|
61
|
+
# hkh: Display help for heroku.
|
|
62
|
+
alias hkh='heroku help'
|
|
52
63
|
|
|
53
|
-
#
|
|
54
|
-
alias
|
|
64
|
+
# hkj: Add yourself to a team app.
|
|
65
|
+
alias hkj='heroku join'
|
|
55
66
|
|
|
56
|
-
#
|
|
57
|
-
alias
|
|
67
|
+
# hkl: List all the commands.
|
|
68
|
+
alias hkl='heroku commands'
|
|
58
69
|
|
|
59
|
-
#
|
|
60
|
-
alias
|
|
70
|
+
# hkla: List who has access to an app.
|
|
71
|
+
alias hkla='heroku access'
|
|
61
72
|
|
|
62
|
-
#
|
|
63
|
-
alias
|
|
73
|
+
# hklg: Display recent log output.
|
|
74
|
+
alias hklg='heroku logs'
|
|
64
75
|
|
|
65
|
-
#
|
|
66
|
-
alias
|
|
76
|
+
# hkn: Display notifications.
|
|
77
|
+
alias hkn='heroku notifications'
|
|
67
78
|
|
|
68
|
-
#
|
|
69
|
-
alias
|
|
79
|
+
# hko: List the teams that you are a member of.
|
|
80
|
+
alias hko='heroku orgs'
|
|
70
81
|
|
|
71
|
-
#
|
|
72
|
-
alias
|
|
82
|
+
# hkoo: Open the team interface in a browser.
|
|
83
|
+
alias hkoo='heroku orgs:open'
|
|
73
84
|
|
|
74
|
-
#
|
|
75
|
-
alias
|
|
85
|
+
# hkp: Open a psql shell to the database.
|
|
86
|
+
alias hkp='heroku psql'
|
|
76
87
|
|
|
77
|
-
#
|
|
78
|
-
alias
|
|
88
|
+
# hkq: Remove yourself from a team app.
|
|
89
|
+
alias hkq='heroku leave'
|
|
79
90
|
|
|
80
|
-
#
|
|
81
|
-
alias
|
|
91
|
+
# hkr: Remove users from a team app.
|
|
92
|
+
alias hkr='heroku access:remove'
|
|
82
93
|
|
|
83
|
-
#
|
|
84
|
-
alias
|
|
94
|
+
# hkrg: List available regions for deployment.
|
|
95
|
+
alias hkrg='heroku regions'
|
|
85
96
|
|
|
86
|
-
#
|
|
87
|
-
alias
|
|
97
|
+
# hks: Display current status of the Heroku platform.
|
|
98
|
+
alias hks='heroku status'
|
|
88
99
|
|
|
89
|
-
#
|
|
90
|
-
alias
|
|
100
|
+
# hkt: List the teams that you are a member of.
|
|
101
|
+
alias hkt='heroku teams'
|
|
91
102
|
|
|
92
|
-
#
|
|
93
|
-
alias
|
|
103
|
+
# hku: Update the heroku CLI.
|
|
104
|
+
alias hku='heroku update'
|
|
94
105
|
|
|
95
|
-
#
|
|
96
|
-
alias
|
|
106
|
+
# hkulk: Unlock an app so any team member can join.
|
|
107
|
+
alias hkulk='heroku unlock'
|
|
97
108
|
|
|
98
|
-
#
|
|
99
|
-
alias
|
|
109
|
+
# hkw: Show which plugin a command is in.
|
|
110
|
+
alias hkw='heroku which'
|
|
100
111
|
|
|
101
|
-
|
|
102
|
-
|
|
112
|
+
## ----------------------------------------------------------------------------
|
|
113
|
+
## 1.2 Heroku Add-ons aliases
|
|
114
|
+
## ----------------------------------------------------------------------------
|
|
103
115
|
|
|
104
|
-
#
|
|
105
|
-
alias
|
|
116
|
+
# Attach an existing add-on resource to an app.
|
|
117
|
+
alias hkada='heroku addons:attach'
|
|
106
118
|
|
|
107
|
-
#
|
|
108
|
-
alias
|
|
119
|
+
# Create a new add-on resource.
|
|
120
|
+
alias hkadc='heroku addons:create'
|
|
109
121
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
## ----------------------------------------------------------------------------
|
|
122
|
+
# Detach an existing add-on resource from an app.
|
|
123
|
+
alias hkadd='heroku addons:detach'
|
|
113
124
|
|
|
114
|
-
#
|
|
115
|
-
alias
|
|
125
|
+
# Open an add-on's Dev Center documentation in your browser.
|
|
126
|
+
alias hkaddoc='heroku addons:docs'
|
|
116
127
|
|
|
117
|
-
#
|
|
118
|
-
alias
|
|
128
|
+
# Change add-on plan.
|
|
129
|
+
alias hkaddown='heroku addons:downgrade'
|
|
119
130
|
|
|
120
|
-
#
|
|
121
|
-
alias
|
|
131
|
+
# Show detailed add-on resource and attachment information.
|
|
132
|
+
alias hkadi='heroku addons:info'
|
|
122
133
|
|
|
123
|
-
#
|
|
124
|
-
alias
|
|
134
|
+
# Permanently destroy an add-on resource.
|
|
135
|
+
alias hkadk='heroku addons:destroy'
|
|
125
136
|
|
|
126
|
-
#
|
|
127
|
-
alias
|
|
137
|
+
# Lists your add-ons and attachments.
|
|
138
|
+
alias hkadl='heroku addons'
|
|
128
139
|
|
|
129
|
-
#
|
|
130
|
-
alias
|
|
140
|
+
# Open an add-on's dashboard in your browser.
|
|
141
|
+
alias hkado='heroku addons:open'
|
|
131
142
|
|
|
132
|
-
#
|
|
133
|
-
alias
|
|
143
|
+
# List all available plans for an add-on services.
|
|
144
|
+
alias hkadp='heroku addons:plans'
|
|
134
145
|
|
|
135
|
-
#
|
|
136
|
-
alias
|
|
146
|
+
# Rename an add-on.
|
|
147
|
+
alias hkadr='heroku addons:rename'
|
|
137
148
|
|
|
138
|
-
#
|
|
139
|
-
alias
|
|
149
|
+
# List all available add-on services.
|
|
150
|
+
alias hkads='heroku addons:services'
|
|
140
151
|
|
|
141
|
-
#
|
|
142
|
-
alias
|
|
152
|
+
# Change add-on plan.
|
|
153
|
+
alias hkadu='heroku addons:upgrade '
|
|
143
154
|
|
|
144
|
-
#
|
|
145
|
-
alias
|
|
155
|
+
# Show provisioning status of the add-ons on the app.
|
|
156
|
+
alias hkadw='heroku addons:wait'
|
|
146
157
|
|
|
147
|
-
|
|
148
|
-
|
|
158
|
+
## ----------------------------------------------------------------------------
|
|
159
|
+
## 1.3 Heroku Apps aliases
|
|
160
|
+
## ----------------------------------------------------------------------------
|
|
149
161
|
|
|
150
|
-
#
|
|
151
|
-
alias
|
|
162
|
+
# hkapc: Creates a new app.
|
|
163
|
+
alias hkapc='heroku apps:create'
|
|
152
164
|
|
|
153
|
-
#
|
|
154
|
-
alias
|
|
165
|
+
# hkape: View app errors.
|
|
166
|
+
alias hkape='heroku apps:errors'
|
|
155
167
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
## ----------------------------------------------------------------------------
|
|
168
|
+
# hkapfav: List favorites apps.
|
|
169
|
+
alias hkapfav='heroku apps:favorites'
|
|
159
170
|
|
|
160
|
-
#
|
|
161
|
-
alias
|
|
171
|
+
# hkapfava: Favorites an app.
|
|
172
|
+
alias hkapfava='heroku apps:favorites:add'
|
|
162
173
|
|
|
163
|
-
#
|
|
164
|
-
alias
|
|
174
|
+
# hkapunfav: Unfavorite an app.
|
|
175
|
+
alias hkapunfav='heroku apps:favorites:remove'
|
|
165
176
|
|
|
166
|
-
#
|
|
167
|
-
alias
|
|
177
|
+
# hkapi: Show detailed app information.
|
|
178
|
+
alias hkapi='heroku apps:info'
|
|
168
179
|
|
|
169
|
-
#
|
|
170
|
-
alias
|
|
180
|
+
# hkapj: Add yourself to a team app.
|
|
181
|
+
alias hkapj='heroku apps:join'
|
|
171
182
|
|
|
172
|
-
#
|
|
173
|
-
alias
|
|
183
|
+
# hkapk: Permanently destroy an app.
|
|
184
|
+
alias hkapk='heroku apps:destroy'
|
|
174
185
|
|
|
175
|
-
#
|
|
176
|
-
alias
|
|
186
|
+
# hkapl: List your apps.
|
|
187
|
+
alias hkapl='heroku apps'
|
|
177
188
|
|
|
178
|
-
#
|
|
179
|
-
alias
|
|
189
|
+
# hkaplk: Prevent team members from joining an app.
|
|
190
|
+
alias hkaplk='heroku apps:lock'
|
|
180
191
|
|
|
181
|
-
#
|
|
182
|
-
alias
|
|
192
|
+
# hkapo: Open the app in a web browser.
|
|
193
|
+
alias hkapo='heroku apps:open'
|
|
183
194
|
|
|
184
|
-
#
|
|
185
|
-
alias
|
|
195
|
+
# hkapq: Remove yourself from a team app.
|
|
196
|
+
alias hkapq='heroku apps:leave'
|
|
186
197
|
|
|
187
|
-
#
|
|
188
|
-
alias
|
|
198
|
+
# hkapr: Rename an app.
|
|
199
|
+
alias hkapr='heroku apps:rename'
|
|
189
200
|
|
|
190
|
-
#
|
|
191
|
-
alias
|
|
201
|
+
# hkaps: Show the list of available stacks.
|
|
202
|
+
alias hkaps='heroku apps:stacks'
|
|
192
203
|
|
|
193
|
-
#
|
|
194
|
-
alias
|
|
204
|
+
# hkapss: Set the stack of an app.
|
|
205
|
+
alias hkapss='heroku apps:stacks:set'
|
|
195
206
|
|
|
196
|
-
#
|
|
197
|
-
alias
|
|
207
|
+
# hkapt: Transfer applications to another user or team.
|
|
208
|
+
alias hkapt='heroku apps:transfer'
|
|
198
209
|
|
|
199
|
-
#
|
|
200
|
-
alias
|
|
210
|
+
# hkapulk: Unlock an app so any team member can join.
|
|
211
|
+
alias hkapulk='heroku apps:unlock'
|
|
201
212
|
|
|
202
|
-
|
|
203
|
-
|
|
213
|
+
## ----------------------------------------------------------------------------
|
|
214
|
+
## 1.4 Heroku Auth 2fa aliases
|
|
215
|
+
## ----------------------------------------------------------------------------
|
|
204
216
|
|
|
205
|
-
#
|
|
206
|
-
alias
|
|
217
|
+
# hk2fa: Display the current logged in user.
|
|
218
|
+
alias hk2fa='heroku auth:whoami'
|
|
207
219
|
|
|
208
|
-
#
|
|
209
|
-
alias
|
|
220
|
+
# hk2fad: Disables 2fa on account.
|
|
221
|
+
alias hk2fad='heroku auth:2fa:disable'
|
|
210
222
|
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
## ----------------------------------------------------------------------------
|
|
223
|
+
# hk2fain: Login with your Heroku credentials.
|
|
224
|
+
alias hk2fain='heroku auth:login'
|
|
214
225
|
|
|
215
|
-
#
|
|
216
|
-
alias
|
|
226
|
+
# hk2faout: Clears local login credentials and invalidates API session.
|
|
227
|
+
alias hk2faout='heroku auth:logout'
|
|
217
228
|
|
|
218
|
-
#
|
|
219
|
-
alias
|
|
229
|
+
# hk2fas: Check 2fa status.
|
|
230
|
+
alias hk2fas='heroku auth:2fa'
|
|
220
231
|
|
|
221
|
-
#
|
|
222
|
-
alias
|
|
232
|
+
# hk2fat: Outputs current CLI authentication token.
|
|
233
|
+
alias hk2fat='heroku auth:token'
|
|
223
234
|
|
|
224
|
-
|
|
225
|
-
|
|
235
|
+
## ----------------------------------------------------------------------------
|
|
236
|
+
## 1.5 Heroku Authorizations aliases
|
|
237
|
+
## ----------------------------------------------------------------------------
|
|
226
238
|
|
|
227
|
-
#
|
|
228
|
-
alias
|
|
239
|
+
# hkauc: Create a new OAuth authorization.
|
|
240
|
+
alias hkauc='heroku authorizations:create'
|
|
229
241
|
|
|
230
|
-
#
|
|
231
|
-
alias
|
|
242
|
+
# hkaui: Show an existing OAuth authorization.
|
|
243
|
+
alias hkaui='heroku authorizations:info'
|
|
232
244
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
## ----------------------------------------------------------------------------
|
|
245
|
+
# hkaul: List OAuth authorizations. |
|
|
246
|
+
alias hkaul='heroku authorizations'
|
|
236
247
|
|
|
237
|
-
#
|
|
238
|
-
alias
|
|
248
|
+
# hkaur: Revoke OAuth authorization. |
|
|
249
|
+
alias hkaur='heroku authorizations:revoke'
|
|
239
250
|
|
|
240
|
-
#
|
|
241
|
-
alias
|
|
251
|
+
# hkauro: Updates an OAuth authorization token. |
|
|
252
|
+
alias hkauro='heroku authorizations:rotate'
|
|
242
253
|
|
|
243
|
-
#
|
|
244
|
-
alias
|
|
254
|
+
# hkauu: Updates an OAuth authorization.
|
|
255
|
+
alias hkauu='heroku authorizations:update'
|
|
245
256
|
|
|
246
|
-
|
|
247
|
-
|
|
257
|
+
## ----------------------------------------------------------------------------
|
|
258
|
+
## 1.6 Heroku Build packs aliases
|
|
259
|
+
## ----------------------------------------------------------------------------
|
|
248
260
|
|
|
249
|
-
#
|
|
250
|
-
alias
|
|
261
|
+
# hkbpac: Display autocomplete installation instructions.
|
|
262
|
+
alias hkbpac='heroku autocomplete'
|
|
251
263
|
|
|
252
|
-
#
|
|
253
|
-
alias
|
|
264
|
+
# hkbpad: Add new app build-pack, inserting into list of build-packs if necessary.
|
|
265
|
+
alias hkbpad='heroku buildpacks:add'
|
|
254
266
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
## ----------------------------------------------------------------------------
|
|
267
|
+
# hkbpcl: Clear all build-packs set on the app.
|
|
268
|
+
alias hkbpcl='heroku buildpacks:clear'
|
|
258
269
|
|
|
259
|
-
#
|
|
260
|
-
alias
|
|
270
|
+
# hkbpi: Fetch info about a build-pack.
|
|
271
|
+
alias hkbpi='heroku buildpacks:info'
|
|
261
272
|
|
|
262
|
-
#
|
|
263
|
-
alias
|
|
273
|
+
# hkbpl: Display the build-packs for an app.
|
|
274
|
+
alias hkbpl='heroku buildpacks'
|
|
264
275
|
|
|
265
|
-
#
|
|
266
|
-
alias
|
|
276
|
+
# hkbpr: Remove a build-pack set on the app.
|
|
277
|
+
alias hkbpr='heroku buildpacks:remove'
|
|
267
278
|
|
|
268
|
-
#
|
|
269
|
-
alias
|
|
279
|
+
# hkbps: Search for build-packs.
|
|
280
|
+
alias hkbps='heroku buildpacks:search'
|
|
270
281
|
|
|
271
|
-
#
|
|
272
|
-
alias
|
|
282
|
+
# hkbpv: List versions of a build-pack. |
|
|
283
|
+
alias hkbpv='heroku buildpacks:versions'
|
|
273
284
|
|
|
274
|
-
|
|
275
|
-
|
|
285
|
+
## ----------------------------------------------------------------------------
|
|
286
|
+
## 1.7 Heroku Certs aliases
|
|
287
|
+
## ----------------------------------------------------------------------------
|
|
276
288
|
|
|
277
|
-
#
|
|
278
|
-
alias
|
|
289
|
+
# hkca: Show ACM status for an app.
|
|
290
|
+
alias hkca='heroku certs:auto'
|
|
279
291
|
|
|
280
|
-
#
|
|
281
|
-
alias
|
|
292
|
+
# hkcad: Add an SSL certificate to an app.
|
|
293
|
+
alias hkcad='heroku certs:add'
|
|
282
294
|
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
## ----------------------------------------------------------------------------
|
|
295
|
+
# hkcae: Enable ACM status for an app.
|
|
296
|
+
alias hkcae='heroku certs:auto:enable'
|
|
286
297
|
|
|
287
|
-
#
|
|
288
|
-
alias
|
|
298
|
+
# hkcak: Disable ACM for an app.
|
|
299
|
+
alias hkcak='heroku certs:auto:disable'
|
|
289
300
|
|
|
290
|
-
#
|
|
291
|
-
alias
|
|
301
|
+
# hkcar: Refresh ACM for an app.
|
|
302
|
+
alias hkcar='heroku certs:auto:refresh'
|
|
292
303
|
|
|
293
|
-
#
|
|
294
|
-
alias
|
|
304
|
+
# hkcc: Print an ordered & complete chain for a certificate.
|
|
305
|
+
alias hkcc='heroku certs:chain'
|
|
295
306
|
|
|
296
|
-
#
|
|
297
|
-
alias
|
|
307
|
+
# hkcg: Generate a key and a CSR or self-signed certificate.
|
|
308
|
+
alias hkcg='heroku certs:generate'
|
|
298
309
|
|
|
299
|
-
#
|
|
300
|
-
alias
|
|
310
|
+
# hkci: Show certificate information for an SSL certificate.
|
|
311
|
+
alias hkci='heroku certs:info'
|
|
301
312
|
|
|
302
|
-
#
|
|
303
|
-
alias
|
|
313
|
+
# hkck: Print the correct key for the given certificate.
|
|
314
|
+
alias hkck='heroku certs:key'
|
|
304
315
|
|
|
305
|
-
#
|
|
306
|
-
alias
|
|
316
|
+
# hkcl: List SSL certificates for an app.
|
|
317
|
+
alias hkcl='heroku certs'
|
|
307
318
|
|
|
308
|
-
#
|
|
309
|
-
alias
|
|
319
|
+
# hkcr: Remove an SSL certificate from an app.
|
|
320
|
+
alias hkcr='heroku certs:remove'
|
|
310
321
|
|
|
311
|
-
#
|
|
312
|
-
alias
|
|
322
|
+
# hkcu: Update an SSL certificate on an app.
|
|
323
|
+
alias hkcu='heroku certs:update'
|
|
313
324
|
|
|
314
|
-
|
|
315
|
-
|
|
325
|
+
## ----------------------------------------------------------------------------
|
|
326
|
+
## 1.8 Heroku ci aliases
|
|
327
|
+
## ----------------------------------------------------------------------------
|
|
316
328
|
|
|
317
|
-
#
|
|
318
|
-
alias
|
|
329
|
+
# hkcicg: Get a CI config var.
|
|
330
|
+
alias hkcicg='heroku ci:config:get'
|
|
319
331
|
|
|
320
|
-
#
|
|
321
|
-
alias
|
|
332
|
+
# hkcics: Set CI config vars.
|
|
333
|
+
alias hkcics='heroku ci:config:set'
|
|
322
334
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
## ----------------------------------------------------------------------------
|
|
335
|
+
# hkcicu: Unset CI config vars.
|
|
336
|
+
alias hkcicu='heroku ci:config:unset'
|
|
326
337
|
|
|
327
|
-
#
|
|
328
|
-
alias
|
|
338
|
+
# hkcicv: Display CI config vars.
|
|
339
|
+
alias hkcicv=' ci:config'
|
|
329
340
|
|
|
330
|
-
#
|
|
331
|
-
alias
|
|
341
|
+
# hkcid: Opens an interactive test debugging session with the contents of the current directory.
|
|
342
|
+
alias hkcid='heroku ci:debug'
|
|
332
343
|
|
|
333
|
-
#
|
|
334
|
-
alias
|
|
344
|
+
# hkcie: Looks for the most recent run and returns the output of that run.
|
|
345
|
+
alias hkcie='heroku ci:last'
|
|
335
346
|
|
|
336
|
-
#
|
|
337
|
-
alias
|
|
347
|
+
# hkcii: Show the status of a specific test run.
|
|
348
|
+
alias hkcii='heroku ci:info'
|
|
338
349
|
|
|
339
|
-
#
|
|
340
|
-
alias
|
|
350
|
+
# hkcil: Display the most recent CI runs for the given pipeline.
|
|
351
|
+
alias hkcil='heroku ci'
|
|
341
352
|
|
|
342
|
-
#
|
|
343
|
-
alias
|
|
353
|
+
# hkcim: 'app-ci.json' is deprecated. Run this command to migrate to app.json with an environments key.
|
|
354
|
+
alias hkcim='heroku ci:migrate-manifest'
|
|
344
355
|
|
|
345
|
-
#
|
|
346
|
-
alias
|
|
356
|
+
# hkcio: Open the Dashboard version of Heroku CI.
|
|
357
|
+
alias hkcio='heroku ci:open'
|
|
347
358
|
|
|
348
|
-
#
|
|
349
|
-
alias
|
|
359
|
+
# hkcir: Run tests against current directory.
|
|
360
|
+
alias hkcir='heroku ci:run'
|
|
350
361
|
|
|
351
|
-
#
|
|
352
|
-
alias
|
|
362
|
+
# hkcir2: Rerun tests against current directory.
|
|
363
|
+
alias hkcir2='heroku ci:rerun'
|
|
353
364
|
|
|
354
|
-
|
|
355
|
-
|
|
365
|
+
## ----------------------------------------------------------------------------
|
|
366
|
+
## 1.9 Heroku config aliases
|
|
367
|
+
## ----------------------------------------------------------------------------
|
|
356
368
|
|
|
357
|
-
#
|
|
358
|
-
alias
|
|
369
|
+
# hkclc: Create a new OAuth client.
|
|
370
|
+
alias hkclc='heroku clients:create'
|
|
359
371
|
|
|
360
|
-
#
|
|
361
|
-
alias
|
|
372
|
+
# hkcli: Show details of an oauth client.
|
|
373
|
+
alias hkcli='heroku clients:info'
|
|
362
374
|
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
## ----------------------------------------------------------------------------
|
|
375
|
+
# hkclk: Delete client by ID.
|
|
376
|
+
alias hkclk='heroku clients:destroy'
|
|
366
377
|
|
|
367
|
-
#
|
|
368
|
-
alias
|
|
378
|
+
# hkcll: List your OAuth clients.
|
|
379
|
+
alias hkcll='heroku clients'
|
|
369
380
|
|
|
370
|
-
#
|
|
371
|
-
alias
|
|
381
|
+
# hkcls: Rotate OAuth client secret.
|
|
382
|
+
alias hkcls='heroku clients:rotate'
|
|
372
383
|
|
|
373
|
-
#
|
|
374
|
-
alias
|
|
384
|
+
# hkclu: Update OAuth client. |
|
|
385
|
+
alias hkclu='heroku clients:update'
|
|
375
386
|
|
|
376
|
-
|
|
377
|
-
|
|
387
|
+
## ----------------------------------------------------------------------------
|
|
388
|
+
## 2. Heroku Configuration aliases
|
|
389
|
+
## ----------------------------------------------------------------------------
|
|
378
390
|
|
|
379
|
-
#
|
|
380
|
-
alias
|
|
391
|
+
# hkcfe: Interactively edit config vars.
|
|
392
|
+
alias hkcfe='heroku config:edit'
|
|
381
393
|
|
|
382
|
-
#
|
|
383
|
-
alias
|
|
394
|
+
# hkcfg: Display a single config value for an app.
|
|
395
|
+
alias hkcfg='heroku config:get'
|
|
384
396
|
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
## ----------------------------------------------------------------------------
|
|
397
|
+
# hkcfs: Set one or more config vars.
|
|
398
|
+
alias hkcfs='heroku config:set'
|
|
388
399
|
|
|
389
|
-
#
|
|
390
|
-
alias
|
|
400
|
+
# hkcfu: Unset one or more config vars.
|
|
401
|
+
alias hkcfu='heroku config:unset'
|
|
391
402
|
|
|
392
|
-
#
|
|
393
|
-
alias
|
|
403
|
+
# hkcfv: Display the config vars for an app.
|
|
404
|
+
alias hkcfv='heroku config'
|
|
394
405
|
|
|
395
|
-
|
|
396
|
-
|
|
406
|
+
## ----------------------------------------------------------------------------
|
|
407
|
+
## 2.1 Heroku Container aliases
|
|
408
|
+
## ----------------------------------------------------------------------------
|
|
397
409
|
|
|
398
|
-
#
|
|
399
|
-
alias
|
|
410
|
+
# hkct: Use containers to build and deploy Heroku apps.
|
|
411
|
+
alias hkct='heroku container'
|
|
400
412
|
|
|
401
|
-
#
|
|
402
|
-
alias
|
|
413
|
+
# hkctin: Log in to Heroku Container Registry.
|
|
414
|
+
alias hkctin='heroku container:login'
|
|
403
415
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
## ----------------------------------------------------------------------------
|
|
416
|
+
# hkctout: Log out from Heroku Container Registry.
|
|
417
|
+
alias hkctout='heroku container:logout'
|
|
407
418
|
|
|
408
|
-
#
|
|
409
|
-
alias
|
|
419
|
+
# hkctpull: Pulls an image from an app's process type.
|
|
420
|
+
alias hkctpull='heroku container:pull'
|
|
410
421
|
|
|
411
|
-
#
|
|
412
|
-
alias
|
|
422
|
+
# hkctpush: Builds, then pushes Docker images to deploy your Heroku app.
|
|
423
|
+
alias hkctpush='heroku container:push'
|
|
413
424
|
|
|
414
|
-
#
|
|
415
|
-
alias
|
|
425
|
+
# hkctrelease: Releases previously pushed Docker images to your Heroku app.
|
|
426
|
+
alias hkctrelease='heroku container:release'
|
|
416
427
|
|
|
417
|
-
#
|
|
418
|
-
alias
|
|
428
|
+
# hkctrm: Remove the process type from your app.
|
|
429
|
+
alias hkctrm='heroku container:rm'
|
|
419
430
|
|
|
420
|
-
#
|
|
421
|
-
alias
|
|
431
|
+
# hkctrun: Builds, then runs the docker image locally.
|
|
432
|
+
alias hkctrun='heroku container:run'
|
|
422
433
|
|
|
423
|
-
|
|
424
|
-
|
|
434
|
+
## ----------------------------------------------------------------------------
|
|
435
|
+
## 2.2 Heroku Domains aliases
|
|
436
|
+
## ----------------------------------------------------------------------------
|
|
425
437
|
|
|
426
|
-
#
|
|
427
|
-
alias
|
|
438
|
+
# hkdo: List domains for an app.
|
|
439
|
+
alias hkdo='heroku domains'
|
|
428
440
|
|
|
429
|
-
#
|
|
430
|
-
alias
|
|
441
|
+
# hkdoa: Add a domain to an app.
|
|
442
|
+
alias hkdoa='heroku domains:add'
|
|
431
443
|
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
## ----------------------------------------------------------------------------
|
|
444
|
+
# hkdoc: Remove all domains from an app.
|
|
445
|
+
alias hkdoc='heroku domains:clear'
|
|
435
446
|
|
|
436
|
-
#
|
|
437
|
-
alias
|
|
447
|
+
# hkdoi: Show detailed information for a domain on an app.
|
|
448
|
+
alias hkdoi='heroku domains:info'
|
|
438
449
|
|
|
439
|
-
#
|
|
440
|
-
alias
|
|
450
|
+
# hkdor: Remove a domain from an app.
|
|
451
|
+
alias hkdor='heroku domains:remove'
|
|
441
452
|
|
|
442
|
-
#
|
|
443
|
-
alias
|
|
453
|
+
# hkdou: Update a domain to use a different SSL certificate on an app.
|
|
454
|
+
alias hkdou='heroku domains:update'
|
|
444
455
|
|
|
445
|
-
#
|
|
446
|
-
alias
|
|
456
|
+
# hkdow: Wait for domain to be active for an app.
|
|
457
|
+
alias hkdow='heroku domains:wait'
|
|
447
458
|
|
|
448
|
-
|
|
449
|
-
|
|
459
|
+
## ----------------------------------------------------------------------------
|
|
460
|
+
## 2.3 Heroku Drains aliases
|
|
461
|
+
## ----------------------------------------------------------------------------
|
|
450
462
|
|
|
451
|
-
#
|
|
452
|
-
alias
|
|
463
|
+
# hkdr: Display the log drains of an app.
|
|
464
|
+
alias hkdr='heroku drains'
|
|
453
465
|
|
|
454
|
-
#
|
|
455
|
-
alias
|
|
466
|
+
# hkdra: Adds a log drain to an app.
|
|
467
|
+
alias hkdra='heroku drains:add'
|
|
456
468
|
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
## ----------------------------------------------------------------------------
|
|
469
|
+
# hkdrr: Removes a log drain from an app.
|
|
470
|
+
alias hkdrr='heroku drains:remove'
|
|
460
471
|
|
|
461
|
-
|
|
462
|
-
|
|
472
|
+
## ----------------------------------------------------------------------------
|
|
473
|
+
## 2.4 Heroku Dyno aliases
|
|
474
|
+
## ----------------------------------------------------------------------------
|
|
463
475
|
|
|
464
|
-
#
|
|
465
|
-
alias
|
|
476
|
+
# hkdyk: Stop app dyno.
|
|
477
|
+
alias hkdyk='heroku dyno:kill'
|
|
466
478
|
|
|
467
|
-
#
|
|
468
|
-
alias
|
|
479
|
+
# hkdyrz: Manage dyno sizes.
|
|
480
|
+
alias hkdyrz='heroku dyno:resize'
|
|
469
481
|
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
## ----------------------------------------------------------------------------
|
|
482
|
+
# hkdyrs: Restart app dynos.
|
|
483
|
+
alias hkdyrs='heroku dyno:restart'
|
|
473
484
|
|
|
474
|
-
#
|
|
475
|
-
alias
|
|
485
|
+
# hkdysc: Scale dyno quantity up or down.
|
|
486
|
+
alias hkdysc='heroku dyno:scale'
|
|
476
487
|
|
|
477
|
-
#
|
|
478
|
-
alias
|
|
488
|
+
# hkdyst: Stop app dyno.
|
|
489
|
+
alias hkdyst='heroku dyno:stop'
|
|
479
490
|
|
|
480
|
-
|
|
481
|
-
|
|
491
|
+
## ----------------------------------------------------------------------------
|
|
492
|
+
## 2.5 Heroku Features aliases
|
|
493
|
+
## ----------------------------------------------------------------------------
|
|
482
494
|
|
|
483
|
-
#
|
|
484
|
-
alias
|
|
495
|
+
# hkfeat: List available app features.
|
|
496
|
+
alias hkfeat='heroku features'
|
|
485
497
|
|
|
486
|
-
#
|
|
487
|
-
alias
|
|
498
|
+
# hkfeatd: Disables an app feature.
|
|
499
|
+
alias hkfeatd='heroku features:disable'
|
|
488
500
|
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
## ----------------------------------------------------------------------------
|
|
501
|
+
# hkfeate: Enables an app feature.
|
|
502
|
+
alias hkfeate='heroku features:enable'
|
|
492
503
|
|
|
493
|
-
#
|
|
494
|
-
alias
|
|
504
|
+
# hkfeati: Display information about a feature.
|
|
505
|
+
alias hkfeati='heroku features:info'
|
|
495
506
|
|
|
496
|
-
|
|
497
|
-
|
|
507
|
+
## ----------------------------------------------------------------------------
|
|
508
|
+
## 2.6 Heroku Git aliases
|
|
509
|
+
## ----------------------------------------------------------------------------
|
|
498
510
|
|
|
499
|
-
#
|
|
500
|
-
alias
|
|
511
|
+
# Clones a heroku app to your local machine at DIRECTORY (defaults to app name).
|
|
512
|
+
alias hkgitc='heroku git:clone'
|
|
501
513
|
|
|
502
|
-
#
|
|
503
|
-
alias
|
|
514
|
+
# Adds a git remote to an app repo.
|
|
515
|
+
alias hkgitr='heroku git:remote'
|
|
504
516
|
|
|
505
|
-
## ----------------------------------------------------------------------------
|
|
506
|
-
## 2.
|
|
507
|
-
## ----------------------------------------------------------------------------
|
|
517
|
+
## ----------------------------------------------------------------------------
|
|
518
|
+
## 2.7 Heroku Keys aliases
|
|
519
|
+
## ----------------------------------------------------------------------------
|
|
508
520
|
|
|
509
|
-
#
|
|
510
|
-
alias
|
|
521
|
+
# Display your SSH keys.
|
|
522
|
+
alias hkk='heroku keys'
|
|
511
523
|
|
|
512
|
-
#
|
|
513
|
-
alias
|
|
524
|
+
# Add an SSH key for a user.
|
|
525
|
+
alias hkka='heroku keys:add'
|
|
514
526
|
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
## ----------------------------------------------------------------------------
|
|
527
|
+
# Remove all SSH keys for current user.
|
|
528
|
+
alias hkkcl='heroku keys:clear'
|
|
518
529
|
|
|
519
|
-
#
|
|
520
|
-
alias
|
|
530
|
+
# Remove an SSH key from the user.
|
|
531
|
+
alias hkkr='heroku keys:remove'
|
|
521
532
|
|
|
522
|
-
|
|
523
|
-
|
|
533
|
+
## ----------------------------------------------------------------------------
|
|
534
|
+
## 2.8 Heroku Labs aliases
|
|
535
|
+
## ----------------------------------------------------------------------------
|
|
524
536
|
|
|
525
|
-
#
|
|
526
|
-
alias
|
|
537
|
+
# hklab: List experimental features.
|
|
538
|
+
alias hklab='heroku labs'
|
|
527
539
|
|
|
528
|
-
#
|
|
529
|
-
alias
|
|
540
|
+
# hklabd: Disables an experimental feature.
|
|
541
|
+
alias hklabd='heroku labs:disable'
|
|
530
542
|
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
## ----------------------------------------------------------------------------
|
|
543
|
+
# hklabe: Enables an experimental feature.
|
|
544
|
+
alias hklabe='heroku labs:enable'
|
|
534
545
|
|
|
535
|
-
#
|
|
536
|
-
alias
|
|
546
|
+
# hklabi: Show feature info.
|
|
547
|
+
alias hklabi='heroku labs:info'
|
|
537
548
|
|
|
538
|
-
|
|
539
|
-
|
|
549
|
+
## ----------------------------------------------------------------------------
|
|
550
|
+
## 3. Heroku Advanced aliases
|
|
551
|
+
## ----------------------------------------------------------------------------
|
|
540
552
|
|
|
541
|
-
|
|
542
|
-
|
|
553
|
+
## ----------------------------------------------------------------------------
|
|
554
|
+
## 3.1 Heroku Local aliases
|
|
555
|
+
## ----------------------------------------------------------------------------
|
|
543
556
|
|
|
544
|
-
#
|
|
545
|
-
alias
|
|
557
|
+
# hkloc: Run heroku app locally.
|
|
558
|
+
alias hkloc='heroku local'
|
|
546
559
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
## ----------------------------------------------------------------------------
|
|
560
|
+
# hklocr: Run a one-off command.
|
|
561
|
+
alias hklocr='heroku local:run'
|
|
550
562
|
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
## ----------------------------------------------------------------------------
|
|
563
|
+
# hklocv: Display node-foreman version.
|
|
564
|
+
alias hklocv='heroku local:version'
|
|
554
565
|
|
|
555
|
-
#
|
|
556
|
-
alias
|
|
566
|
+
# hkloclk: Prevent team members from joining an app.
|
|
567
|
+
alias hkloclk='heroku lock'
|
|
557
568
|
|
|
558
|
-
|
|
559
|
-
|
|
569
|
+
## ----------------------------------------------------------------------------
|
|
570
|
+
## 3.2 Heroku Maintenance aliases
|
|
571
|
+
## ----------------------------------------------------------------------------
|
|
560
572
|
|
|
561
|
-
#
|
|
562
|
-
alias
|
|
573
|
+
# hkmt: Display the current maintenance status of app.
|
|
574
|
+
alias hkmt='heroku maintenance'
|
|
563
575
|
|
|
564
|
-
#
|
|
565
|
-
alias
|
|
576
|
+
# hkmtoff: Take the app out of maintenance mode.
|
|
577
|
+
alias hkmtoff='heroku maintenance:off'
|
|
566
578
|
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
## ----------------------------------------------------------------------------
|
|
579
|
+
# hkmton: Put the app into maintenance mode.
|
|
580
|
+
alias hkmton='heroku maintenance:on'
|
|
570
581
|
|
|
571
|
-
|
|
572
|
-
|
|
582
|
+
## ----------------------------------------------------------------------------
|
|
583
|
+
## 3.3 Heroku Members aliases
|
|
584
|
+
## ----------------------------------------------------------------------------
|
|
573
585
|
|
|
574
|
-
#
|
|
575
|
-
alias
|
|
586
|
+
# hkmb: List members of a team.
|
|
587
|
+
alias hkmb='heroku members'
|
|
576
588
|
|
|
577
|
-
#
|
|
578
|
-
alias
|
|
589
|
+
# hkmba: Adds a user to a team.
|
|
590
|
+
alias hkmba='heroku members:add'
|
|
579
591
|
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
## ----------------------------------------------------------------------------
|
|
592
|
+
# hkmbr: Removes a user from a team.
|
|
593
|
+
alias hkmbr='heroku members:remove'
|
|
583
594
|
|
|
584
|
-
#
|
|
585
|
-
alias
|
|
595
|
+
# hkmbs: Sets a members role in a team. |
|
|
596
|
+
alias hkmbs='heroku members:set'
|
|
586
597
|
|
|
587
|
-
|
|
588
|
-
|
|
598
|
+
## ----------------------------------------------------------------------------
|
|
599
|
+
## 3.4 Heroku Postgres aliases
|
|
600
|
+
## ----------------------------------------------------------------------------
|
|
589
601
|
|
|
590
|
-
#
|
|
591
|
-
alias
|
|
602
|
+
# hkpg: Show database information.
|
|
603
|
+
alias hkpg='heroku pg'
|
|
592
604
|
|
|
593
|
-
#
|
|
594
|
-
alias
|
|
605
|
+
# hkpgb: Show table and index bloat in your database ordered by most wasteful.
|
|
606
|
+
alias hkpgb='heroku pg:bloat'
|
|
595
607
|
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
## ----------------------------------------------------------------------------
|
|
608
|
+
# hkpgbk: List database backups.
|
|
609
|
+
alias hkpgbk='heroku pg:backups'
|
|
599
610
|
|
|
600
|
-
#
|
|
601
|
-
alias
|
|
611
|
+
# hkpgbkcl: Cancel an in-progress backup or restore (default newest).
|
|
612
|
+
alias hkpgbkcl='heroku pg:backups:cancel'
|
|
602
613
|
|
|
603
|
-
#
|
|
604
|
-
alias
|
|
614
|
+
# hkpgbkc: Capture a new backup.
|
|
615
|
+
alias hkpgbkc='heroku pg:backups:capture'
|
|
605
616
|
|
|
606
|
-
#
|
|
607
|
-
alias
|
|
617
|
+
# hkpgbkdl: Delete a backup.
|
|
618
|
+
alias hkpgbkdl='heroku pg:backups:delete'
|
|
608
619
|
|
|
609
|
-
#
|
|
610
|
-
alias
|
|
620
|
+
# hkpgbkdw: Downloads database backup.
|
|
621
|
+
alias hkpgbkdw='heroku pg:backups:download'
|
|
611
622
|
|
|
612
|
-
#
|
|
613
|
-
alias
|
|
623
|
+
# hkpgbki: Get information about a specific backup.
|
|
624
|
+
alias hkpgbki='heroku pg:backups:info'
|
|
614
625
|
|
|
615
|
-
#
|
|
616
|
-
alias
|
|
626
|
+
# hkpgbkr: Restore a backup (default latest) to a database.
|
|
627
|
+
alias hkpgbkr='heroku pg:backups:restore'
|
|
617
628
|
|
|
618
|
-
#
|
|
619
|
-
alias
|
|
629
|
+
# hkpgbks: Schedule daily backups for given database.
|
|
630
|
+
alias hkpgbks='heroku pg:backups:schedule'
|
|
620
631
|
|
|
621
|
-
#
|
|
622
|
-
alias
|
|
632
|
+
# hkpgbksh: List backup schedule.
|
|
633
|
+
alias hkpgbksh='heroku pg:backups:schedules'
|
|
623
634
|
|
|
624
|
-
#
|
|
625
|
-
alias
|
|
635
|
+
# hkpgbkurl: Get secret but publicly accessible URL of a backup.
|
|
636
|
+
alias hkpgbkurl='heroku pg:backups:url'
|
|
626
637
|
|
|
627
|
-
#
|
|
628
|
-
alias
|
|
638
|
+
# hkpgbkk: Stop daily backups.
|
|
639
|
+
alias hkpgbkk='heroku pg:backups:unschedule'
|
|
629
640
|
|
|
630
|
-
#
|
|
631
|
-
alias
|
|
641
|
+
# hkpgblk: Display queries holding locks other queries are waiting to be released.
|
|
642
|
+
alias hkpgblk='heroku pg:blocking'
|
|
632
643
|
|
|
633
|
-
#
|
|
634
|
-
alias
|
|
644
|
+
# hkpgc: Copy all data from source db to target.
|
|
645
|
+
alias hkpgc='heroku pg:copy'
|
|
635
646
|
|
|
636
|
-
#
|
|
637
|
-
alias
|
|
647
|
+
# hkpgcpa: Add an attachment to a database using connection pooling.
|
|
648
|
+
alias hkpgcpa='heroku pg:connection-pooling:attach'
|
|
638
649
|
|
|
639
|
-
#
|
|
640
|
-
alias
|
|
650
|
+
# hkpgcr: Show information on credentials in the database.
|
|
651
|
+
alias hkpgcr='heroku pg:credentials'
|
|
641
652
|
|
|
642
|
-
#
|
|
643
|
-
alias
|
|
653
|
+
# hkpgcrc: Create credential within database.
|
|
654
|
+
alias hkpgcrc='heroku pg:credentials:create'
|
|
644
655
|
|
|
645
|
-
#
|
|
646
|
-
alias
|
|
656
|
+
# hkpgcrd: Destroy credential within database.
|
|
657
|
+
alias hkpgcrd='heroku pg:credentials:destroy'
|
|
647
658
|
|
|
648
|
-
#
|
|
649
|
-
alias
|
|
659
|
+
# hkpgcrr: Rotate the database credentials.
|
|
660
|
+
alias hkpgcrr='heroku pg:credentials:rotate'
|
|
650
661
|
|
|
651
|
-
#
|
|
652
|
-
alias
|
|
662
|
+
# hkpgcrrd: Repair the permissions of the default credential within database.
|
|
663
|
+
alias hkpgcrrd='heroku pg:credentials:repair-default'
|
|
653
664
|
|
|
654
|
-
#
|
|
655
|
-
alias
|
|
665
|
+
# hkpgcrurl: Show information on a database credential.
|
|
666
|
+
alias hkpgcrurl='heroku pg:credentials:url'
|
|
656
667
|
|
|
657
|
-
#
|
|
658
|
-
alias
|
|
668
|
+
# hkpgdg: Run or view diagnostics report.
|
|
669
|
+
alias hkpgdg='heroku pg:diagnose'
|
|
659
670
|
|
|
660
|
-
#
|
|
661
|
-
alias
|
|
671
|
+
# hkpgi: Show database information.
|
|
672
|
+
alias hkpgi='heroku pg:info'
|
|
662
673
|
|
|
663
|
-
#
|
|
664
|
-
alias
|
|
674
|
+
# hkpgk: Kill a query.
|
|
675
|
+
alias hkpgk='heroku pg:kill'
|
|
665
676
|
|
|
666
|
-
#
|
|
667
|
-
alias
|
|
677
|
+
# hkpgka: Terminates all connections for all credentials.
|
|
678
|
+
alias hkpgka='heroku pg:killall'
|
|
668
679
|
|
|
669
|
-
#
|
|
670
|
-
alias
|
|
680
|
+
# hkpglks: Display queries with active locks.
|
|
681
|
+
alias hkpglks='heroku pg:locks'
|
|
671
682
|
|
|
672
|
-
#
|
|
673
|
-
alias
|
|
683
|
+
# hkpglnk: Lists all databases and information on link.
|
|
684
|
+
alias hkpglnk='heroku pg:links'
|
|
674
685
|
|
|
675
|
-
#
|
|
676
|
-
alias
|
|
686
|
+
# hkpglnkc: Create a link between data stores.
|
|
687
|
+
alias hkpglnkc='heroku pg:links:create'
|
|
677
688
|
|
|
678
|
-
#
|
|
679
|
-
alias
|
|
689
|
+
# hkpglnkd: Destroys a link between data stores.
|
|
690
|
+
alias hkpglnkd='heroku pg:links:destroy'
|
|
680
691
|
|
|
681
|
-
#
|
|
682
|
-
alias
|
|
692
|
+
# hkpgmt: Show current maintenance information.
|
|
693
|
+
alias hkpgmt='heroku pg:maintenance'
|
|
683
694
|
|
|
684
|
-
#
|
|
685
|
-
alias
|
|
695
|
+
# hkpgmtr: Start maintenance.
|
|
696
|
+
alias hkpgmtr='heroku pg:maintenance:run'
|
|
686
697
|
|
|
687
|
-
#
|
|
688
|
-
alias
|
|
698
|
+
# hkpgmtw: Set weekly maintenance window.
|
|
699
|
+
alias hkpgmtw='heroku pg:maintenance:window'
|
|
689
700
|
|
|
690
|
-
#
|
|
691
|
-
alias
|
|
701
|
+
# hkpgo: Show 10 queries that have longest execution time in aggregate.
|
|
702
|
+
alias hkpgo='heroku pg:outliers'
|
|
692
703
|
|
|
693
|
-
#
|
|
694
|
-
alias
|
|
704
|
+
# hkpgp: Sets DATABASE as your DATABASE_URL.
|
|
705
|
+
alias hkpgp='heroku pg:promote'
|
|
695
706
|
|
|
696
|
-
#
|
|
697
|
-
alias
|
|
707
|
+
# hkpgps: View active queries with execution time.
|
|
708
|
+
alias hkpgps='heroku pg:ps'
|
|
698
709
|
|
|
699
|
-
#
|
|
700
|
-
alias
|
|
710
|
+
# hkpgpsql: Open a psql shell to the database.
|
|
711
|
+
alias hkpgpsql='heroku pg:psql'
|
|
701
712
|
|
|
702
|
-
#
|
|
703
|
-
alias
|
|
713
|
+
# hkpgpull: Pull Heroku database into local or remote database.
|
|
714
|
+
alias hkpgpull='heroku pg:pull'
|
|
704
715
|
|
|
705
|
-
#
|
|
706
|
-
alias
|
|
716
|
+
# hkpgpush: Push local or remote into Heroku database.
|
|
717
|
+
alias hkpgpush='heroku pg:push'
|
|
707
718
|
|
|
708
|
-
#
|
|
709
|
-
alias
|
|
719
|
+
# hkpgreset: Delete all data in DATABASE.
|
|
720
|
+
alias hkpgreset='heroku pg:reset'
|
|
710
721
|
|
|
711
|
-
#
|
|
712
|
-
alias
|
|
722
|
+
# hkpgreset: Show your current database settings.
|
|
723
|
+
alias hkpgset='heroku pg:settings'
|
|
713
724
|
|
|
714
|
-
#
|
|
715
|
-
alias
|
|
725
|
+
# hkpgsetllw: Controls whether a log message is produced when a session waits longer than the deadlock_timeout to acquire a lock. deadlock_timeout is se... .
|
|
726
|
+
alias hkpgsetllw='heroku pg:settings:log-lock-waits'
|
|
716
727
|
|
|
717
|
-
#
|
|
718
|
-
alias
|
|
728
|
+
# hkpgsetlmds: The duration of each completed statement will be logged if the statement completes after the time specified by VALUE.
|
|
729
|
+
alias hkpgsetlmds='heroku pg:settings:log-min-duration-statement'
|
|
719
730
|
|
|
720
|
-
#
|
|
721
|
-
alias
|
|
731
|
+
# hkpgsetlgs: 'log_statement' controls which SQL statements are logged.
|
|
732
|
+
alias hkpgsetlgs='heroku pg:settings:log-statement'
|
|
722
733
|
|
|
723
|
-
#
|
|
724
|
-
alias
|
|
734
|
+
# hkpguf: Stop a replica from following and make it a writeable database.
|
|
735
|
+
alias hkpguf='heroku pg:unfollow'
|
|
725
736
|
|
|
726
|
-
#
|
|
727
|
-
alias
|
|
737
|
+
# hkpgup: Unfollow a database and upgrade it to the latest stable PostgreSQL version.
|
|
738
|
+
alias hkpgup='heroku pg:upgrade'
|
|
728
739
|
|
|
729
|
-
#
|
|
730
|
-
alias
|
|
740
|
+
# hkpgvs: Show dead rows and whether an automatic vacuum is expected to be triggered.
|
|
741
|
+
alias hkpgvs='heroku pg:vacuum-stats'
|
|
731
742
|
|
|
732
|
-
#
|
|
733
|
-
alias
|
|
743
|
+
# hkpgww: Blocks until database is available.
|
|
744
|
+
alias hkpgww='heroku pg:wait'
|
|
734
745
|
|
|
735
|
-
|
|
736
|
-
|
|
746
|
+
## ----------------------------------------------------------------------------
|
|
747
|
+
## 3.5 Heroku Pipelines aliases
|
|
748
|
+
## ----------------------------------------------------------------------------
|
|
737
749
|
|
|
738
|
-
#
|
|
739
|
-
alias
|
|
750
|
+
# List pipelines you have access to.
|
|
751
|
+
alias hkpipe='heroku pipelines'
|
|
740
752
|
|
|
741
|
-
#
|
|
742
|
-
alias
|
|
753
|
+
# Add this app to a pipeline.
|
|
754
|
+
alias hkpipea='heroku pipelines:add'
|
|
743
755
|
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
## ----------------------------------------------------------------------------
|
|
756
|
+
# Create a new pipeline.
|
|
757
|
+
alias hkpipec='heroku pipelines:create'
|
|
747
758
|
|
|
748
|
-
#
|
|
749
|
-
alias
|
|
759
|
+
# Connect a github repo to an existing pipeline.
|
|
760
|
+
alias hkpipect='heroku pipelines:connect'
|
|
750
761
|
|
|
751
|
-
#
|
|
752
|
-
alias
|
|
762
|
+
# Compares the latest release of this app to its downstream app(s).
|
|
763
|
+
alias hkpipediff='heroku pipelines:diff'
|
|
753
764
|
|
|
754
|
-
#
|
|
755
|
-
alias
|
|
765
|
+
# Show list of apps in a pipeline.
|
|
766
|
+
alias hkpipei='heroku pipelines:info'
|
|
756
767
|
|
|
757
|
-
#
|
|
758
|
-
alias
|
|
768
|
+
# Destroy a pipeline.
|
|
769
|
+
alias hkpipek='heroku pipelines:destroy'
|
|
759
770
|
|
|
760
|
-
#
|
|
761
|
-
alias
|
|
771
|
+
# Open a pipeline in dashboard.
|
|
772
|
+
alias hkpipeo='heroku pipelines:open'
|
|
762
773
|
|
|
763
|
-
#
|
|
764
|
-
alias
|
|
774
|
+
# Promote the latest release of this app to its downstream app(s).
|
|
775
|
+
alias hkpipep='heroku pipelines:promote'
|
|
765
776
|
|
|
766
|
-
#
|
|
767
|
-
alias
|
|
777
|
+
# Remove this app from its pipeline.
|
|
778
|
+
alias hkpiper='heroku pipelines:remove'
|
|
768
779
|
|
|
769
|
-
#
|
|
770
|
-
alias
|
|
780
|
+
# Rename a pipeline.
|
|
781
|
+
alias hkpipern='heroku pipelines:rename'
|
|
771
782
|
|
|
772
|
-
#
|
|
773
|
-
alias
|
|
783
|
+
# Bootstrap a new pipeline with common settings and create a production and staging app (requires a fully formed app.json in the repo).
|
|
784
|
+
alias hkpipes='heroku pipelines:setup'
|
|
774
785
|
|
|
775
|
-
#
|
|
776
|
-
alias
|
|
786
|
+
# Transfer ownership of a pipeline.
|
|
787
|
+
alias hkpipett='heroku pipelines:transfer'
|
|
777
788
|
|
|
778
|
-
#
|
|
779
|
-
alias
|
|
789
|
+
# Update the app's stage in a pipeline.
|
|
790
|
+
alias hkpipeu='heroku pipelines:update'
|
|
780
791
|
|
|
781
|
-
|
|
782
|
-
|
|
792
|
+
## ----------------------------------------------------------------------------
|
|
793
|
+
## 3.6 Heroku Plugins aliases
|
|
794
|
+
## ----------------------------------------------------------------------------
|
|
783
795
|
|
|
784
|
-
#
|
|
785
|
-
alias
|
|
796
|
+
# hkplugs: List installed plugins.
|
|
797
|
+
alias hkplugs='heroku plugins'
|
|
786
798
|
|
|
787
|
-
#
|
|
788
|
-
alias
|
|
799
|
+
# hkplugsi: Installs a plugin into the CLI.
|
|
800
|
+
alias hkplugsi='heroku plugins:install'
|
|
789
801
|
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
## ----------------------------------------------------------------------------
|
|
802
|
+
# hkplugslk: Links a plugin into the CLI for development.
|
|
803
|
+
alias hkplugslk='heroku plugins:link'
|
|
793
804
|
|
|
794
|
-
#
|
|
795
|
-
alias
|
|
805
|
+
# hkplugsui: Removes a plugin from the CLI.
|
|
806
|
+
alias hkplugsui='heroku plugins:uninstall'
|
|
796
807
|
|
|
797
|
-
#
|
|
798
|
-
alias
|
|
808
|
+
# hkplugsu: Update installed plugins.
|
|
809
|
+
alias hkplugsu='heroku plugins:update'
|
|
799
810
|
|
|
800
|
-
|
|
801
|
-
|
|
811
|
+
## ----------------------------------------------------------------------------
|
|
812
|
+
## 3.7 Heroku 'ps' aliases
|
|
813
|
+
## ----------------------------------------------------------------------------
|
|
802
814
|
|
|
803
|
-
#
|
|
804
|
-
alias
|
|
815
|
+
# hkpsad: Disable web dyno autoscaling.
|
|
816
|
+
alias hkpsad='heroku ps:autoscale:disable'
|
|
805
817
|
|
|
806
|
-
#
|
|
807
|
-
alias
|
|
818
|
+
# hkps: List dynos for an app.
|
|
819
|
+
alias hkps='heroku ps'
|
|
808
820
|
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
## ----------------------------------------------------------------------------
|
|
821
|
+
# hkpsae: Enable web dyno autoscaling.
|
|
822
|
+
alias hkpsae='heroku ps:autoscale:enable '
|
|
812
823
|
|
|
813
|
-
#
|
|
814
|
-
alias
|
|
824
|
+
# hkpsc: Copy a file from a dyno to the local filesystem.
|
|
825
|
+
alias hkpsc='heroku ps:copy'
|
|
815
826
|
|
|
816
|
-
#
|
|
817
|
-
alias
|
|
827
|
+
# hkpse: Create an SSH session to a dyno.
|
|
828
|
+
alias hkpse='heroku ps:exec'
|
|
818
829
|
|
|
819
|
-
#
|
|
820
|
-
alias
|
|
830
|
+
# hkpsf: Forward traffic on a local port to a dyno.
|
|
831
|
+
alias hkpsf='heroku ps:forward'
|
|
821
832
|
|
|
822
|
-
#
|
|
823
|
-
alias
|
|
833
|
+
# hkpsk: Stop app dyno.
|
|
834
|
+
alias hkpsk='heroku ps:kill'
|
|
824
835
|
|
|
825
|
-
#
|
|
826
|
-
alias
|
|
836
|
+
# hkpsr: Restart app dynos.
|
|
837
|
+
alias hkpsr='heroku ps:restart'
|
|
827
838
|
|
|
828
|
-
#
|
|
829
|
-
alias
|
|
839
|
+
# hkpsrs: Manage dyno sizes.
|
|
840
|
+
alias hkpsrs='heroku ps:resize'
|
|
830
841
|
|
|
831
|
-
#
|
|
832
|
-
alias
|
|
842
|
+
# hkpss: Stop app dyno.
|
|
843
|
+
alias hkpss='heroku ps:stop'
|
|
833
844
|
|
|
834
|
-
#
|
|
835
|
-
alias
|
|
845
|
+
# hkpssc: Scale dyno quantity up or down.
|
|
846
|
+
alias hkpssc='heroku ps:scale'
|
|
836
847
|
|
|
837
|
-
#
|
|
838
|
-
alias
|
|
848
|
+
# hkpssck: Launch a SOCKS proxy into a dyno.
|
|
849
|
+
alias hkpssck='heroku ps:socks'
|
|
839
850
|
|
|
840
|
-
#
|
|
841
|
-
alias
|
|
851
|
+
# hkpst: Manage dyno sizes.
|
|
852
|
+
alias hkpst='heroku ps:type'
|
|
842
853
|
|
|
843
|
-
#
|
|
844
|
-
alias
|
|
854
|
+
# hkpsw: Wait for all dynos to be running latest version after a release.
|
|
855
|
+
alias hkpsw='heroku ps:wait'
|
|
845
856
|
|
|
846
|
-
|
|
847
|
-
|
|
857
|
+
## ----------------------------------------------------------------------------
|
|
858
|
+
## 3.8 Heroku redis aliases
|
|
859
|
+
## ----------------------------------------------------------------------------
|
|
848
860
|
|
|
849
|
-
#
|
|
850
|
-
alias
|
|
861
|
+
# hkred: Gets information about redis.
|
|
862
|
+
alias hkred='heroku redis'
|
|
851
863
|
|
|
852
|
-
#
|
|
853
|
-
alias
|
|
864
|
+
# hkredcli: Opens a redis prompt.
|
|
865
|
+
alias hkredcli='heroku redis:cli'
|
|
854
866
|
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
## ----------------------------------------------------------------------------
|
|
867
|
+
# hkredcr: Display credentials information.
|
|
868
|
+
alias hkredcr='heroku redis:credentials'
|
|
858
869
|
|
|
859
|
-
#
|
|
860
|
-
alias
|
|
870
|
+
# hkredi: Gets information about redis.
|
|
871
|
+
alias hkredi='heroku redis:info'
|
|
861
872
|
|
|
862
|
-
#
|
|
863
|
-
alias
|
|
873
|
+
# hkredkn: Set the keyspace notifications configuration.
|
|
874
|
+
alias hkredkn='heroku redis:keyspace-notifications'
|
|
864
875
|
|
|
865
|
-
#
|
|
866
|
-
alias
|
|
876
|
+
# hkredmm: Set the key eviction policy.
|
|
877
|
+
alias hkredmm='heroku redis:maxmemory'
|
|
867
878
|
|
|
868
|
-
#
|
|
869
|
-
alias
|
|
879
|
+
# hkredmt: Manage maintenance windows.
|
|
880
|
+
alias hkredmt='heroku redis:maintenance'
|
|
870
881
|
|
|
871
|
-
#
|
|
872
|
-
alias
|
|
882
|
+
# hkredp: Sets DATABASE as your REDIS_URL.
|
|
883
|
+
alias hkredp='heroku redis:promote'
|
|
873
884
|
|
|
874
|
-
#
|
|
875
|
-
alias
|
|
885
|
+
# hkredsr: Reset all stats covered by RESETSTAT (<https://redis.io/commands/config-resetstat>).
|
|
886
|
+
alias hkredsr='heroku redis:stats-reset'
|
|
876
887
|
|
|
877
|
-
#
|
|
878
|
-
alias
|
|
888
|
+
# hkredt: Set the number of seconds to wait before killing idle connections.
|
|
889
|
+
alias hkredt='heroku redis:timeout'
|
|
879
890
|
|
|
880
|
-
#
|
|
881
|
-
alias
|
|
891
|
+
# hkredw: Wait for Redis instance to be available.
|
|
892
|
+
alias hkredw='heroku redis:wait'
|
|
882
893
|
|
|
883
|
-
|
|
884
|
-
|
|
894
|
+
## ----------------------------------------------------------------------------
|
|
895
|
+
## 3.9 Heroku Releases aliases
|
|
896
|
+
## ----------------------------------------------------------------------------
|
|
885
897
|
|
|
886
|
-
#
|
|
887
|
-
alias
|
|
898
|
+
# hkrel: Display the releases for an app.
|
|
899
|
+
alias hkrel='heroku releases'
|
|
888
900
|
|
|
889
|
-
#
|
|
890
|
-
alias
|
|
901
|
+
# hkreli: View detailed information for a release.
|
|
902
|
+
alias hkreli='heroku releases:info'
|
|
891
903
|
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
## ----------------------------------------------------------------------------
|
|
904
|
+
# hkrelo: View the release command output.
|
|
905
|
+
alias hkrelo='heroku releases:output'
|
|
895
906
|
|
|
896
|
-
#
|
|
897
|
-
alias
|
|
907
|
+
# hkrelr: Rollback to a previous release.
|
|
908
|
+
alias hkrelr='heroku releases:rollback'
|
|
898
909
|
|
|
899
|
-
|
|
900
|
-
|
|
910
|
+
## ----------------------------------------------------------------------------
|
|
911
|
+
## 3.10.1 Heroku Spaces aliases
|
|
912
|
+
## ----------------------------------------------------------------------------
|
|
901
913
|
|
|
902
|
-
#
|
|
903
|
-
alias
|
|
914
|
+
# hkrvae: Enable review apps and/or settings on an existing pipeline.
|
|
915
|
+
alias hkrvae='heroku reviewapps:enable'
|
|
904
916
|
|
|
905
|
-
#
|
|
906
|
-
alias
|
|
917
|
+
# hkrvad: Disable review apps and/or settings on an existing pipeline.
|
|
918
|
+
alias hkrvad='heroku reviewapps:disable'
|
|
907
919
|
|
|
908
|
-
## ----------------------------------------------------------------------------
|
|
909
|
-
## 3.10.
|
|
910
|
-
## ----------------------------------------------------------------------------
|
|
920
|
+
## ----------------------------------------------------------------------------
|
|
921
|
+
## 3.10.2 Heroku Run aliases
|
|
922
|
+
## ----------------------------------------------------------------------------
|
|
911
923
|
|
|
912
|
-
#
|
|
913
|
-
alias
|
|
924
|
+
# hkrun: Run a one-off process inside a heroku dyno.
|
|
925
|
+
alias hkrun='heroku run'
|
|
914
926
|
|
|
915
|
-
#
|
|
916
|
-
alias
|
|
927
|
+
# hkrund: Run a detached dyno, where output is sent to your logs.
|
|
928
|
+
alias hkrund='heroku run:detached'
|
|
917
929
|
|
|
918
|
-
## ----------------------------------------------------------------------------
|
|
919
|
-
## 3.10.
|
|
920
|
-
## ----------------------------------------------------------------------------
|
|
930
|
+
## ----------------------------------------------------------------------------
|
|
931
|
+
## 3.10.3 Heroku Sessions aliases
|
|
932
|
+
## ----------------------------------------------------------------------------
|
|
921
933
|
|
|
922
|
-
#
|
|
923
|
-
alias
|
|
934
|
+
# hksessions: List your OAuth sessions.
|
|
935
|
+
alias hksessions='heroku sessions'
|
|
924
936
|
|
|
925
|
-
#
|
|
926
|
-
alias
|
|
937
|
+
# hksessionsd: Delete (logout) OAuth session by ID.
|
|
938
|
+
alias hksessionsd='heroku sessions:destroy'
|
|
927
939
|
|
|
928
|
-
## ----------------------------------------------------------------------------
|
|
929
|
-
## 3.10.
|
|
930
|
-
## ----------------------------------------------------------------------------
|
|
940
|
+
## ----------------------------------------------------------------------------
|
|
941
|
+
## 3.10.4 Heroku Spaces aliases
|
|
942
|
+
## ----------------------------------------------------------------------------
|
|
931
943
|
|
|
932
|
-
#
|
|
933
|
-
alias
|
|
944
|
+
# hksp: List available spaces.
|
|
945
|
+
alias hksp='heroku spaces'
|
|
934
946
|
|
|
935
|
-
#
|
|
936
|
-
alias
|
|
947
|
+
# hkspc: Create a new space.
|
|
948
|
+
alias hkspc='heroku spaces:create'
|
|
937
949
|
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
## ----------------------------------------------------------------------------
|
|
950
|
+
# hkspd: Destroy a space.
|
|
951
|
+
alias hkspd='heroku spaces:destroy'
|
|
941
952
|
|
|
942
|
-
#
|
|
943
|
-
alias
|
|
953
|
+
# hkspi: Show info about a space.
|
|
954
|
+
alias hkspi='heroku spaces:info'
|
|
944
955
|
|
|
945
|
-
#
|
|
946
|
-
alias
|
|
956
|
+
# hksppi: Display the information necessary to initiate a peering connection.
|
|
957
|
+
alias hksppi='heroku spaces:peering:info'
|
|
947
958
|
|
|
948
|
-
#
|
|
949
|
-
alias
|
|
959
|
+
# hkspp: List peering connections for a space.
|
|
960
|
+
alias hkspp='heroku spaces:peerings'
|
|
950
961
|
|
|
951
|
-
#
|
|
952
|
-
alias
|
|
962
|
+
# hksppa: Accepts a pending peering request for a private space.
|
|
963
|
+
alias hksppa='heroku spaces:peerings:accept'
|
|
953
964
|
|
|
954
|
-
#
|
|
955
|
-
alias
|
|
965
|
+
# hksppd: Destroys an active peering connection in a private space.
|
|
966
|
+
alias hksppd='heroku spaces:peerings:destroy'
|
|
956
967
|
|
|
957
|
-
#
|
|
958
|
-
alias
|
|
968
|
+
# hkspps: List dynos for a space.
|
|
969
|
+
alias hkspps='heroku spaces:ps'
|
|
959
970
|
|
|
960
|
-
#
|
|
961
|
-
alias
|
|
971
|
+
# hkspr: Renames a space.
|
|
972
|
+
alias hkspr='heroku spaces:rename'
|
|
962
973
|
|
|
963
|
-
#
|
|
964
|
-
alias
|
|
974
|
+
# hksptop: Show space topology.
|
|
975
|
+
alias hksptop='heroku spaces:topology'
|
|
965
976
|
|
|
966
|
-
#
|
|
967
|
-
alias
|
|
977
|
+
# hkspt: Transfer a space to another team.
|
|
978
|
+
alias hkspt='heroku spaces:transfer'
|
|
968
979
|
|
|
969
|
-
#
|
|
970
|
-
alias
|
|
980
|
+
# hkspconf: Display the configuration information for VPN.
|
|
981
|
+
alias hkspconf='heroku spaces:vpn:config'
|
|
971
982
|
|
|
972
|
-
#
|
|
973
|
-
alias
|
|
983
|
+
# hkspvc: Create VPN.
|
|
984
|
+
alias hkspvc='heroku spaces:vpn:connect'
|
|
974
985
|
|
|
975
|
-
#
|
|
976
|
-
alias
|
|
986
|
+
# hkspvcs: List the VPN Connections for a space.
|
|
987
|
+
alias hkspvcs='heroku spaces:vpn:connections'
|
|
977
988
|
|
|
978
|
-
#
|
|
979
|
-
alias
|
|
989
|
+
# hkspvk: Destroys VPN in a private space.
|
|
990
|
+
alias hkspvk='heroku spaces:vpn:destroy'
|
|
980
991
|
|
|
981
|
-
#
|
|
982
|
-
alias
|
|
992
|
+
# hkspvi: Display the information for VPN.
|
|
993
|
+
alias hkspvi='heroku spaces:vpn:info'
|
|
983
994
|
|
|
984
|
-
#
|
|
985
|
-
alias
|
|
995
|
+
# hkspvu: Update VPN.
|
|
996
|
+
alias hkspvu='heroku spaces:vpn:update'
|
|
986
997
|
|
|
987
|
-
#
|
|
988
|
-
alias
|
|
998
|
+
# hkspvw: Wait for VPN Connection to be created.
|
|
999
|
+
alias hkspvw='heroku spaces:vpn:wait'
|
|
989
1000
|
|
|
990
|
-
#
|
|
991
|
-
alias
|
|
1001
|
+
# hkspw: Wait for a space to be created.
|
|
1002
|
+
alias hkspw='heroku spaces:wait'
|
|
992
1003
|
|
|
993
|
-
|
|
994
|
-
|
|
1004
|
+
## ----------------------------------------------------------------------------
|
|
1005
|
+
## 3.10.5 Heroku Webhooks aliases
|
|
1006
|
+
## ----------------------------------------------------------------------------
|
|
995
1007
|
|
|
996
|
-
#
|
|
997
|
-
alias
|
|
1008
|
+
# hkwh: List webhooks on an app.
|
|
1009
|
+
alias hkwh='heroku webhooks'
|
|
998
1010
|
|
|
999
|
-
#
|
|
1000
|
-
alias
|
|
1011
|
+
# hkwha: Add a webhook to an app.
|
|
1012
|
+
alias hkwha='heroku webhooks:add'
|
|
1001
1013
|
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
## ----------------------------------------------------------------------------
|
|
1014
|
+
# hkwhdv: List webhook deliveries on an app.
|
|
1015
|
+
alias hkwhdv='heroku webhooks:deliveries'
|
|
1005
1016
|
|
|
1006
|
-
#
|
|
1007
|
-
alias
|
|
1017
|
+
# hkwhdvi: Info for a webhook event on an app.
|
|
1018
|
+
alias hkwhdvi='heroku webhooks:deliveries:info'
|
|
1008
1019
|
|
|
1009
|
-
#
|
|
1010
|
-
alias
|
|
1020
|
+
# hkwhev: List webhook events on an app.
|
|
1021
|
+
alias hkwhev='heroku webhooks:events'
|
|
1011
1022
|
|
|
1012
|
-
#
|
|
1013
|
-
alias
|
|
1023
|
+
# hkwhevi: Info for a webhook event on an app.
|
|
1024
|
+
alias hkwhevi='heroku webhooks:events:info'
|
|
1014
1025
|
|
|
1015
|
-
#
|
|
1016
|
-
alias
|
|
1026
|
+
# hkwhi: Info for a webhook on an app.
|
|
1027
|
+
alias hkwhi='heroku webhooks:info'
|
|
1017
1028
|
|
|
1018
|
-
#
|
|
1019
|
-
alias
|
|
1029
|
+
# hkwhr: Removes a webhook from an app.
|
|
1030
|
+
alias hkwhr='heroku webhooks:remove'
|
|
1020
1031
|
|
|
1021
|
-
#
|
|
1022
|
-
alias
|
|
1023
|
-
|
|
1024
|
-
# hkwhi: Info for a webhook on an app.
|
|
1025
|
-
alias hkwhi='heroku webhooks:info'
|
|
1026
|
-
|
|
1027
|
-
# hkwhr: Removes a webhook from an app.
|
|
1028
|
-
alias hkwhr='heroku webhooks:remove'
|
|
1029
|
-
|
|
1030
|
-
# hkwhu: Updates a webhook in an app.
|
|
1031
|
-
alias hkwhu='heroku webhooks:update'
|
|
1032
|
+
# hkwhu: Updates a webhook in an app.
|
|
1033
|
+
alias hkwhu='heroku webhooks:update'
|
|
1034
|
+
fi
|