sonr/devbox.json

15 lines
372 B
JSON
Raw Normal View History

2024-07-05 22:20:13 -04:00
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.10.5/.schema/devbox.schema.json",
2024-08-10 17:01:14 -04:00
"packages": ["golangci-lint@latest", "go@1.21", "templ@latest", "air@latest"],
2024-07-05 22:20:13 -04:00
"env": {
"GOPATH": "$HOME/go",
2024-07-23 14:18:15 -04:00
"PATH": "$HOME/go/bin:$PATH"
2024-07-05 22:20:13 -04:00
},
"shell": {
"scripts": {
2024-07-23 14:18:15 -04:00
"proto": ["make proto-gen"],
"ps": ["devbox services ls"]
2024-07-05 22:20:13 -04:00
}
}
}