-
-
Notifications
You must be signed in to change notification settings - Fork 375
Expand file tree
/
Copy pathdevbox.json
More file actions
25 lines (25 loc) · 729 Bytes
/
devbox.json
File metadata and controls
25 lines (25 loc) · 729 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
"env": {
"GOPATH": "$PWD/.devbox/go",
"GOBIN": "$PWD/.devbox/go/bin",
"PATH": "$PATH:$PWD/.devbox/go/bin"
},
"packages": {
"git": "latest",
"gh": "latest",
"go": "1.23",
"golangci-lint": "2.10.1",
"gofumpt": "0.8.0",
"go-task": "3.44.1",
"nerdfix": "0.4.2",
"fd": "10.2.0"
},
"shell": {
"init_hook": [
"echo \"Creating devbox shell...\"",
"[[ $(command -v prism) != \"$GOBIN/prism\" ]] && go install go.dalton.dog/prism@latest",
"[[ $(command -v gotip) != \"$GOBIN/gotip\" ]] && go install github.com/lusingander/gotip/cmd/gotip@latest"
]
}
}