forked from majoferenc/demo-cicd-automation-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devbox.json
37 lines (37 loc) · 845 Bytes
/
devbox.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.6/.schema/devbox.schema.json",
"packages": [
"curl@latest",
"wget@latest",
"git@latest",
"argo@latest",
"argocd@latest",
"kubernetes-helm@latest",
"kubectl@latest",
"k9s@latest",
"kubectx@latest",
"docker@latest",
"neovim@latest",
"jq@latest",
"mktemp@latest",
"yq@latest",
"argocd-autopilot@latest",
"go-task@latest"
],
"shell": {
"init_hook": [
"echo 'Welcome to devbox!' > /dev/null",
"alias ll='ls -lptrah'",
"alias k='kubectl'",
"alias kns='kubens'",
"alias kctx='kubectx'",
"alias kgp='kubectl get pods'",
"alias kgs='kubectl get svc'"
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
]
}
}
}