@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,89 +0,0 @@
1
- <!-- markdownlint-disable MD033 MD041 MD043 -->
2
-
3
- <img
4
- src="https://kura.pro/dotfiles/v2/images/logos/dotfiles.svg"
5
- alt="dotfiles logo"
6
- width="66"
7
- align="right"
8
- />
9
-
10
- <!-- markdownlint-enable MD033 MD041 -->
11
-
12
- # Dotfiles (v0.2.469)
13
-
14
- Simply designed to fit your shell life 🐚
15
-
16
- ![Dotfiles banner][banner]
17
-
18
- ## 🅶🅽🆄 🅲🅾🆁🅴🆄🆃🅸🅻🆂 🅰🅻🅸🅰🆂🅴🆂
19
-
20
- This is a collection of aliases for the GNU Coreutils package, which is
21
- a set of standard Unix utilities often included in Linux distributions.
22
- These aliases allow for easier use of these utilities by providing
23
- shorthand commands that replace the full utility name with a shorter
24
- alias.
25
-
26
- The aliases in this collection cover a wide range of utilities, from
27
- basic file manipulation commands like "cp" and "rm" to more advanced
28
- text processing commands like "awk" and "sed". There are also aliases
29
- for various checksum and hash utilities like "md5sum" and "sha256sum".
30
-
31
- ## 🅰🅻🅸🅰🆂🅴🆂
32
-
33
- ### Basic file management utilities
34
-
35
- - `basename` Strip directory and suffix from filenames.
36
- - `cp` Copy files and directories.
37
- - `dirname` Strip non-directory suffix from filenames.
38
- - `ln` Create links between files.
39
- - `loname` Print the name of the link.
40
- - `ls` List directory contents.
41
- - `mkdir` Create directories.
42
- - `mkfifo` Make named pipes (FIFOs).
43
- - `mknod` Make block or character special files.
44
- - `mv` Move or rename files or directories.
45
- - `pathchk` Check file name validity and portability.
46
- - `pwd` Print working directory name.
47
- - `readlink` Print resolved symbolic links or canonical file names.
48
- - `realpath` Print the resolved physical path of the specified path.
49
- - `rm` Remove files or directories.
50
- - `rmdir` Remove empty directories.
51
- - `unlink` Remove files or directories.
52
-
53
- ### File content manipulation utilities
54
-
55
- - `awk` Pattern scanning and processing language.
56
- - `cat` Concatenate and display files.
57
- - `csplit` Split a file into context-determined pieces.
58
- - `cut` Remove sections from each line of files.
59
- - `diff` Compare files line by line.
60
- - `fold` Wrap each input line to fit in specified width.
61
- - `grep` Print lines matching a pattern.
62
- - `head` Output the first part of files.
63
- - `nl` Number lines of files.
64
- - `paste` Merge lines of files.
65
- - `patch` Apply a diff file to an original.
66
- - `ptx` Produce a permuted index of file contents.
67
- - `sed` Stream editor for filtering and transforming text.
68
- - `sort` Sort lines of text files.
69
- - `split` Split a file into pieces.
70
- - `tail` Output the last part of files.
71
- - `tr` Translate or delete characters.
72
-
73
- ### File checksum and encryption utilities
74
-
75
- - `b2sum` Print or check BLAKE2 message digests.
76
- - `cksum` Print CRC checksum and byte counts.
77
- - `sha1sum` Print or check SHA1 message digests.
78
- - `sha224sum` Print or check SHA224 message digests.
79
- - `sha256sum` Print or check SHA256 message digests.
80
- - `sha384sum` Print or check SHA384 message digests.
81
- - `sha512sum` Print or check SHA512 message digests.
82
-
83
- ### Other file utilities
84
-
85
- - `base32` Print or convert base32 data.
86
- - `base64` Encode or decode base64 data.
87
- - `basenc` Encode or decode base64, base32,
88
-
89
- [banner]: https://kura.pro/dotfiles/v2/images/titles/title-dotfiles.svg
@@ -1,150 +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-2023. All rights reserved
6
- # License: MIT
7
-
8
- # 🅶🅽🆄 🅲🅾🆁🅴🆄🆃🅸🅻🆂 🅰🅻🅸🅰🆂🅴🆂
9
-
10
- if command -v 'gdate' >/dev/null; then
11
-
12
- # Strip directory and suffix from filenames.
13
- alias basename=basename
14
-
15
- # Copy files and directories.
16
- alias cp=cp
17
-
18
- # Strip non-directory suffix from filenames.
19
- alias dirname=dirname
20
-
21
- # Create links between files.
22
- alias ln=ln
23
-
24
- # Print the name of the link.
25
- alias loname=loname
26
-
27
- # List directory contents.
28
- alias ls=ls
29
-
30
- # Create directories.
31
- alias mkdir=mkdir
32
-
33
- # Make named pipes (FIFOs).
34
- alias mkfifo=mkfifo
35
-
36
- # Make block or character special files.
37
- alias mknod=mknod
38
-
39
- # Move or rename files or directories.
40
- alias mv=mv
41
-
42
- # Check file name validity and portability.
43
- alias pathchk=pathchk
44
-
45
- # Print working directory name.
46
- alias pwd=pwd
47
-
48
- # Print resolved symbolic links or canonical file names.
49
- alias readlink=readlink
50
-
51
- # Print the resolved physical path of the specified path.
52
- alias realpath=realpath
53
-
54
- # Remove files or directories.
55
- alias rm=rm
56
-
57
- # Remove empty directories.
58
- alias rmdir=rmdir
59
-
60
- # Remove files or directories.
61
- alias unlink=unlink
62
-
63
- ## File content manipulation utilities
64
-
65
- # Pattern scanning and processing language.
66
- alias awk=awk
67
-
68
- # Concatenate and display files.
69
- alias cat=cat
70
-
71
- # Split a file into context-determined pieces.
72
- alias csplit=csplit
73
-
74
- # Remove sections from each line of files.
75
- alias cut=cut
76
-
77
- # Compare files line by line.
78
- alias diff=diff
79
-
80
- # Wrap each input line to fit in specified width.
81
- alias fold=fold
82
-
83
- # Print lines matching a pattern.
84
- alias grep=grep
85
-
86
- # Output the first part of files.
87
- alias head=head
88
-
89
- # Number lines of files.
90
- alias nl=nl
91
-
92
- # Merge lines of files.
93
- alias paste=paste
94
-
95
- # Apply a diff file to an original.
96
- alias patch=patch
97
-
98
- # ptx: Produce a permuted index of file contents.
99
- alias ptx=ptx
100
-
101
- # sed: Stream editor for filtering and transforming text.
102
- alias sed=sed
103
-
104
- # sort: Sort lines of text files.
105
- alias sort=sort
106
-
107
- # split: Split a file into pieces.
108
- alias split=split
109
-
110
- # tail: Output the last part of files.
111
- alias tail=tail
112
-
113
- # tr: Translate or delete characters.
114
- alias tr=tr
115
-
116
- ## File checksum and encryption utilities
117
-
118
- # Print or check BLAKE2 message digests.
119
- alias b2sum=b2sum
120
-
121
- # Print CRC checksum and byte counts.
122
- alias cksum=cksum
123
-
124
- # Print or check SHA1 message digests.
125
- alias sha1sum=sha1sum
126
-
127
- # Print or check SHA224 message digests.
128
- alias sha224sum=sha224sum
129
-
130
- # Print or check SHA256 message digests.
131
- alias sha256sum=sha256sum
132
-
133
- # Print or check SHA384 message digests.
134
- alias sha384sum=sha384sum
135
-
136
- # Print or check SHA512 message digests.
137
- alias sha512sum=sha512sum
138
-
139
- ## Other file utilities
140
-
141
- # Print or convert base32 data.
142
- alias base32=base32
143
-
144
- # Encode or decode base64 data.
145
- alias base64=base64
146
-
147
- # Encode or decode base64, base32,
148
- alias basenc=basenc
149
-
150
- fi
@@ -1,430 +0,0 @@
1
- <!-- markdownlint-disable MD033 MD041 MD043 -->
2
-
3
- <img
4
- src="https://kura.pro/dotfiles/v2/images/logos/dotfiles.svg"
5
- alt="dotfiles logo"
6
- width="66"
7
- align="right"
8
- />
9
-
10
- <!-- markdownlint-enable MD033 MD041 -->
11
-
12
- # Dotfiles (v0.2.469)
13
-
14
- Simply designed to fit your shell life 🐚
15
-
16
- ![Dotfiles banner][banner]
17
-
18
- ## 🅷🅴🆁🅾🅺🆄 🅰🅻🅸🅰🆂🅴🆂
19
-
20
- This is a collection of aliases for the
21
- [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli).
22
-
23
- ### 1. Heroku Core aliases
24
-
25
- #### 1.1 Heroku Access aliases
26
-
27
- - `hkk` Heroku CLI command shortcut.
28
- - `hka` Add new users to your app.
29
- - `hkau` Update existing collaborators on an team app.
30
- - `hkh` Display help for heroku.
31
- - `hkj` Add yourself to a team app.
32
- - `hkl` List all the commands.
33
- - `hkla` List who has access to an app.
34
- - `hklg` Display recent log output.
35
- - `hkn` Display notifications.
36
- - `hko` List the teams that you are a member of.
37
- - `hkoo` Open the team interface in a browser.
38
- - `hkp` Open a psql shell to the database.
39
- - `hkq` Remove yourself from a team app.
40
- - `hkr` Remove users from a team app.
41
- - `hkrg` List available regions for deployment.
42
- - `hks` Display current status of the Heroku platform.
43
- - `hkt` List the teams that you are a member of.
44
- - `hku` Update the heroku CLI.
45
- - `hkulk` Unlock an app so any team member can join.
46
- - `hkw` Show which plugin a command is in
47
-
48
- #### 1.2 Heroku Add-ons aliases
49
-
50
- - `hkada` Attach an existing add-on resource to an app
51
- - `hkadc` Create a new add-on resource
52
- - `hkadd` Detach an existing add-on resource from an app
53
- - `hkaddoc` Open an add-on's Dev Center documentation in your browser
54
- - `hkaddown` Change add-on plan
55
- - `hkadi` Show detailed add-on resource and attachment information
56
- - `hkadk` Permanently destroy an add-on resource
57
- - `hkadl` Lists your add-ons and attachments
58
- - `hkado` Open an add-on's dashboard in your browser
59
- - `hkadp` List all available plans for an add-on services
60
- - `hkadr` Rename an add-on
61
- - `hkads` List all available add-on services
62
- - `hkadu` Change add-on plan
63
- - `hkadw` Show provisioning status of the add-ons on the app
64
-
65
- #### 1.3 Heroku Apps aliases
66
-
67
- - `hkapc` Creates a new app
68
- - `hkape` View app errors
69
- - `hkapfav` List favorites apps
70
- - `hkapfava` Favorites an app
71
- - `hkapunfav` Unfavorite an app
72
- - `hkapi` Show detailed app information
73
- - `hkapj` Add yourself to a team app
74
- - `hkapk` Permanently destroy an app
75
- - `hkapl` List your apps
76
- - `hkaplk` Prevent team members from joining an app
77
- - `hkapo` Open the app in a web browser
78
- - `hkapq` Remove yourself from a team app
79
- - `hkapr` Rename an app
80
- - `hkaps` Show the list of available stacks
81
- - `hkapss` Set the stack of an app
82
- - `hkapt` Transfer applications to another user or team
83
- - `hkapulk` Unlock an app so any team member can join
84
-
85
- #### 1.4 Heroku Auth 2fa aliases
86
-
87
- - `hk2fa` Display the current logged in user
88
- - `hk2fad` Disables 2fa on account
89
- - `hk2fain` Login with your Heroku credentials
90
- - `hk2faout` Clears local login credentials and invalidates API session
91
- - `hk2fas` Check 2fa status
92
- - `hk2fat` Outputs current CLI authentication token
93
-
94
- #### 1.5 Heroku Authorizations aliases
95
-
96
- - `hkauc` Create a new OAuth authorization
97
- - `hkaui` Show an existing OAuth authorization
98
- - `hkaul` List OAuth authorizations.
99
- - `hkaur` Revoke OAuth authorization.
100
- - `hkauro` Updates an OAuth authorization token.
101
- - `hkauu` Updates an OAuth authorization
102
-
103
- #### 1.6 Heroku Build packs aliases
104
-
105
- - `hkbpac` Display autocomplete installation instructions
106
- - `hkbpad` Add new app build-pack, inserting into list of build-packs if
107
- necessary
108
- - `hkbpcl` Clear all build-packs set on the app
109
- - `hkbpi` Fetch info about a build-pack
110
- - `hkbpl` Display the build-packs for an app
111
- - `hkbpr` Remove a build-pack set on the app
112
- - `hkbps` Search for build-packs
113
- - `hkbpv` List versions of a build-pack.
114
-
115
- #### 1.7 Heroku Certs aliases
116
-
117
- - `hkca` Show ACM status for an app
118
- - `hkcad` Add an SSL certificate to an app
119
- - `hkcae` Enable ACM status for an app
120
- - `hkcak` Disable ACM for an app
121
- - `hkcar` Refresh ACM for an app
122
- - `hkcc` Print an ordered & complete chain for a certificate
123
- - `hkcg` Generate a key and a CSR or self-signed certificate
124
- - `hkci` Show certificate information for an SSL certificate
125
- - `hkck` Print the correct key for the given certificate
126
- - `hkcl` List SSL certificates for an app
127
- - `hkcr` Remove an SSL certificate from an app
128
- - `hkcu` Update an SSL certificate on an app
129
-
130
- #### 1.8 Heroku ci aliases
131
-
132
- - `hkcicg` Get a CI config var
133
- - `hkcics` Set CI config vars
134
- - `hkcicu` Unset CI config vars
135
- - `hkcicv` Display CI config vars
136
- - `hkcid` Opens an interactive test debugging session with the contents
137
- of the current directory
138
- - `hkcie` Looks for the most recent run and returns the output of that
139
- run
140
- - `hkcii` Show the status of a specific test run
141
- - `hkcil` Display the most recent CI runs for the given pipeline
142
- - `hkcim` 'app-ci.json' is deprecated. Run this command to migrate to
143
- app.json with an environments key
144
- - `hkcio` Open the Dashboard version of Heroku CI
145
- - `hkcir` Run tests against current directory
146
- - `hkcir2` Rerun tests against current directory
147
-
148
- #### 1.9 Heroku config aliases
149
-
150
- - `hkclc` Create a new OAuth client
151
- - `hkcli` Show details of an oauth client
152
- - `hkclk` Delete client by ID
153
- - `hkcll` List your OAuth clients
154
- - `hkcls` Rotate OAuth client secret
155
- - `hkclu` Update OAuth client.
156
-
157
- ### 2. Heroku Configuration aliases
158
-
159
- - `hkcfe` Interactively edit config vars
160
- - `hkcfg` Display a single config value for an app
161
- - `hkcfs` Set one or more config vars
162
- - `hkcfu` Unset one or more config vars
163
- - `hkcfv` Display the config vars for an app
164
-
165
- #### 2.1 Heroku Container aliases
166
-
167
- - `hkct` Use containers to build and deploy Heroku apps
168
- - `hkctin` Log in to Heroku Container Registry
169
- - `hkctout` Log out from Heroku Container Registry
170
- - `hkctpull` Pulls an image from an app's process type
171
- - `hkctpush` Builds, then pushes Docker images to deploy your Heroku app
172
- - `hkctrelease` Releases previously pushed Docker images to your Heroku
173
- app
174
- - `hkctrm` Remove the process type from your app
175
- - `hkctrun` Builds, then runs the docker image locally
176
-
177
- #### 2.2 Heroku Domains aliases
178
-
179
- - `hkdo` List domains for an app
180
- - `hkdoa` Add a domain to an app
181
- - `hkdoc` Remove all domains from an app
182
- - `hkdoi` Show detailed information for a domain on an app
183
- - `hkdor` Remove a domain from an app
184
- - `hkdou` Update a domain to use a different SSL certificate on an app
185
- - `hkdow` Wait for domain to be active for an app
186
-
187
- #### 2.3 Heroku Drains aliases
188
-
189
- - `hkdr` Display the log drains of an app
190
- - `hkdra` Adds a log drain to an app
191
- - `hkdrr` Removes a log drain from an app
192
-
193
- #### 2.4 Heroku Dyno aliases
194
-
195
- - `hkdyk` Stop app dyno
196
- - `hkdyrz` Manage dyno sizes
197
- - `hkdyrs` Restart app dynos
198
- - `hkdysc` Scale dyno quantity up or down
199
- - `hkdyst` Stop app dyno
200
-
201
- #### 2.5 Heroku Features aliases
202
-
203
- - `hkfeat` List available app features
204
- - `hkfeatd` Disables an app feature
205
- - `hkfeate` Enables an app feature
206
- - `hkfeati` Display information about a feature
207
-
208
- #### 2.6 Heroku Git aliases
209
-
210
- - `hkgitc` Clones a heroku app to your local machine at DIRECTORY
211
- (defaults to app name)
212
- - `hkgitr` Adds a git remote to an app repo
213
-
214
- #### 2.7 Heroku Keys aliases
215
-
216
- - `hkk` Display your SSH keys
217
- - `hkka` Add an SSH key for a user
218
- - `hkkcl` Remove all SSH keys for current user
219
- - `hkkr` Remove an SSH key from the user
220
-
221
- #### 2.8 Heroku Labs aliases
222
-
223
- - `hklab` List experimental features
224
- - `hklabd` Disables an experimental feature
225
- - `hklabe` Enables an experimental feature
226
- - `hklabi` Show feature info
227
-
228
- ### 3. Heroku Advanced aliases
229
-
230
- #### 3.1 Heroku Local aliases
231
-
232
- - `hkloc` Run heroku app locally
233
- - `hklocr` Run a one-off command
234
- - `hklocv` Display node-foreman version
235
- - `hkloclk` Prevent team members from joining an app
236
-
237
- #### 3.2 Heroku Maintenance aliases
238
-
239
- - `hkmt` Display the current maintenance status of app
240
- - `hkmtoff` Take the app out of maintenance mode
241
- - `hkmton` Put the app into maintenance mode
242
-
243
- #### 3.3 Heroku Members aliases
244
-
245
- - `hkmb` List members of a team
246
- - `hkmba` Adds a user to a team
247
- - `hkmbr` Removes a user from a team
248
- - `hkmbs` Sets a members role in a team.
249
-
250
- #### 3.4 Heroku Postgres aliases
251
-
252
- - `hkpg` Show database information
253
- - `hkpgb` Show table and index bloat in your database ordered by most
254
- wasteful
255
- - `hkpgbk` List database backups
256
- - `hkpgbkcl` Cancel an in-progress backup or restore (default newest)
257
- - `hkpgbkc` Capture a new backup
258
- - `hkpgbkdl` Delete a backup
259
- - `hkpgbkdw` Downloads database backup
260
- - `hkpgbki` Get information about a specific backup
261
- - `hkpgbkr` Restore a backup (default latest) to a database
262
- - `hkpgbks` Schedule daily backups for given database
263
- - `hkpgbksh` List backup schedule
264
- - `hkpgbkurl` Get secret but publicly accessible URL of a backup
265
- - `hkpgbkk` Stop daily backups
266
- - `hkpgblk` Display queries holding locks other queries are waiting to
267
- be released
268
- - `hkpgc` Copy all data from source db to target
269
- - `hkpgcpa` Add an attachment to a database using connection pooling
270
- - `hkpgcr` Show information on credentials in the database
271
- - `hkpgcrc` Create credential within database
272
- - `hkpgcrd` Destroy credential within database
273
- - `hkpgcrr` Rotate the database credentials
274
- - `hkpgcrrd` Repair the permissions of the default credential within
275
- database
276
- - `hkpgcrurl` Show information on a database credential
277
- - `hkpgdg` Run or view diagnostics report
278
- - `hkpgi` Show database information
279
- - `hkpgk` Kill a query
280
- - `hkpgka` Terminates all connections for all credentials
281
- - `hkpglks` Display queries with active locks
282
- - `hkpglnk` Lists all databases and information on link
283
- - `hkpglnkc` Create a link between data stores
284
- - `hkpglnkd` Destroys a link between data stores
285
- - `hkpgmt` heroku pg:maintenance'
286
- - `hkpgmtr` Start maintenance
287
- - `hkpgmtw` Set weekly maintenance window
288
- - `hkpgo` Show 10 queries that have longest execution time in aggregate
289
- - `hkpgp` Sets DATABASE as your DATABASE_URL
290
- - `hkpgps` View active queries with execution time
291
- - `hkpgpsql` Open a psql shell to the database
292
- - `hkpgpull` Pull Heroku database into local or remote database
293
- - `hkpgpush` Push local or remote into Heroku database
294
- - `hkpgreset` Delete all data in DATABASE
295
- - `hkpgset` Show your current database settings
296
- - `hkpgsetllw` Controls whether a log message is produced when a session
297
- waits longer than the deadlock_timeout to acquire a lock.
298
- - `hkpgsetlmds` The duration of each completed statement will be logged
299
- if the statement completes after the time specified by VALUE
300
- - `hkpgsetlgs` 'log_statement' controls which SQL statements are logged
301
- - `hkpguf` Stop a replica from following and make it a writeable
302
- database
303
- - `hkpgup` Unfollow a database and upgrade it to the latest stable
304
- PostgreSQL version
305
- - `hkpgvs` Show dead rows and whether an automatic vacuum is expected
306
- to be triggered
307
- - `hkpgww` Blocks until database is available
308
-
309
- #### 3.5 Heroku Pipelines aliases
310
-
311
- - `hkpipe` List pipelines you have access to
312
- - `hkpipea` Add this app to a pipeline
313
- - `hkpipec` Create a new pipeline
314
- - `hkpipect` Connect a github repo to an existing pipeline
315
- - `hkpipediff` Compares the latest release of this app to its downstream
316
- app(s)
317
- - `hkpipei` Show list of apps in a pipeline
318
- - `hkpipek` Destroy a pipeline
319
- - `hkpipeo` Open a pipeline in dashboard
320
- - `hkpipep` Promote the latest release of this app to its downstream
321
- app(s)
322
- - `hkpiper` heroku pipelines:remove'Remove this app from its pipeline
323
- - `hkpipern` Rename a pipeline
324
- - `hkpipes` Bootstrap a new pipeline with common settings and create a
325
- production and staging app (requires a fully formed app.json in the
326
- repo)
327
- - `hkpipett` Transfer ownership of a pipeline
328
- - `hkpipeu` Update the app's stage in a pipeline
329
-
330
- #### 3.6 Heroku Plugins aliases
331
-
332
- - `hkplugs` List installed plugins
333
- - `hkplugsi` Installs a plugin into the CLI
334
- - `hkplugslk` Links a plugin into the CLI for development
335
- - `hkplugsui` Removes a plugin from the CLI
336
- - `hkplugsu` Update installed plugins
337
-
338
- #### 3.7 Heroku 'ps' aliases
339
-
340
- - `hkpsad` Disable web dyno autoscaling
341
- - `hkps` List dynos for an app
342
- - `hkpsae` Enable web dyno autoscaling
343
- - `hkpsc` Copy a file from a dyno to the local filesystem
344
- - `hkpse` Create an SSH session to a dyno
345
- - `hkpsf` Forward traffic on a local port to a dyno
346
- - `hkpsk` Stop app dyno
347
- - `hkpsr` Restart app dynos
348
- - `hkpsrs` Manage dyno sizes
349
- - `hkpss` Stop app dyno
350
- - `hkpssc` Scale dyno quantity up or down
351
- - `hkpssck` Launch a SOCKS proxy into a dyno
352
- - `hkpst` Manage dyno sizes
353
- - `hkpsw` Wait for all dynos to be running latest version after a
354
- release
355
-
356
- #### 3.8 Heroku redis aliases
357
-
358
- - `hkred` Gets information about redis
359
- - `hkredcli` Opens a redis prompt
360
- - `hkredcr` Display credentials information
361
- - `hkredi` Gets information about redis
362
- - `hkredkn` Set the keyspace notifications configuration
363
- - `hkredmm` Set the key eviction policy
364
- - `hkredmt` Manage maintenance windows
365
- - `hkredp` Sets DATABASE as your REDIS_URL
366
- - `hkredsr` Reset all stats covered by RESETSTAT
367
- (<https://redis.io/commands/config-resetstat>)
368
- - `hkredt` Set the number of seconds to wait before killing idle
369
- connections
370
- - `hkredw` Wait for Redis instance to be available
371
-
372
- #### 3.9 Heroku Releases aliases
373
-
374
- - `hkrel` Display the releases for an app
375
- - `hkreli` View detailed information for a release
376
- - `hkrelo` View the release command output
377
- - `hkrelr` Rollback to a previous release
378
-
379
- #### 3.10.1 Heroku Spaces aliases
380
-
381
- - `hkrvae` Enable review apps and/or settings on an existing pipeline
382
- - `hkrvad` Disable review apps and/or settings on an existing pipeline
383
-
384
- #### 3.10.2 Heroku Run aliases
385
-
386
- - `hkrun` Run a one-off process inside a heroku dyno
387
- - `hkrund` Run a detached dyno, where output is sent to your logs
388
-
389
- #### 3.10.3 Heroku Sessions aliases
390
-
391
- - `hksessions` List your OAuth sessions
392
- - `hksessionsd` Delete (logout) OAuth session by ID
393
-
394
- #### 3.10.4 Heroku Spaces aliases
395
-
396
- - `hksp` List available spaces
397
- - `hkspc` Create a new space
398
- - `hkspd` Destroy a space
399
- - `hkspi` Show info about a space
400
- - `hksppi` Display the information necessary to initiate a peering
401
- connection
402
- - `hkspp` List peering connections for a space
403
- - `hksppa` Accepts a pending peering request for a private space
404
- - `hksppd` Destroys an active peering connection in a private space
405
- - `hkspps` List dynos for a space
406
- - `hkspr` Renames a space
407
- - `hksptop` Show space topology
408
- - `hkspt` Transfer a space to another team
409
- - `hkspconf` Display the configuration information for VPN
410
- - `hkspvc` Create VPN
411
- - `hkspvcs` List the VPN Connections for a space
412
- - `hkspvk` Destroys VPN in a private space
413
- - `hkspvi` Display the information for VPN
414
- - `hkspvu` Update VPN
415
- - `hkspvw` Wait for VPN Connection to be created
416
- - `hkspw` Wait for a space to be created
417
-
418
- #### 3.10.5 Heroku Webhooks aliases
419
-
420
- - `hkwh` List webhooks on an app
421
- - `hkwha` Add a webhook to an app
422
- - `hkwhdv` List webhook deliveries on an app
423
- - `hkwhdvi` Info for a webhook event on an app
424
- - `hkwhev` List webhook events on an app
425
- - `hkwhevi` Info for a webhook event on an app
426
- - `hkwhi` Info for a webhook on an app
427
- - `hkwhr` Removes a webhook from an app
428
- - `hkwhu` Updates a webhook in an app
429
-
430
- [banner]: https://kura.pro/dotfiles/v2/images/titles/title-dotfiles.svg