sonr/devbox.json

22 lines
453 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",
"packages": [
"ipfs@latest",
"golangci-lint@latest",
2024-07-23 14:18:15 -04:00
"go_1_22@latest",
2024-07-05 22:20:13 -04:00
"templ@latest",
"air@latest"
],
"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"],
"templ": ["templ generate"],
"ps": ["devbox services ls"]
2024-07-05 22:20:13 -04:00
}
}
}