@sebastienrousseau/dotfiles 0.2.469 → 0.2.499

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