Files
sonr/devbox.json
T

31 lines
711 B
JSON
Raw Normal View History

2025-03-27 04:14:38 -04:00
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.14.0/.schema/devbox.schema.json",
"packages": [
"buf@latest",
"go@latest",
"docker@latest",
"gum@latest",
"go-task@latest",
"goreleaser@latest",
"commitizen@latest",
"doppler@latest",
"ripgrep@latest"
2025-03-27 04:14:38 -04:00
],
"env": {
"GOPATH": "$HOME/go",
"PATH": "$PATH:$PWD/bin",
2025-03-27 04:14:38 -04:00
"DOPPLER_TOKEN": "$DOPPLER_SONR_RELEASE_TOKEN"
},
"shell": {
"init_hook": [
"gh extension install valeriobelli/gh-milestone"
],
2025-03-27 04:14:38 -04:00
"scripts": {
"release": [
"doppler secrets download --no-file --format env > .env",
"task -t .taskfile.dist.yml bump"
]
}
}
}