Files
cloud-services/devbox.json

23 lines
500 B
JSON

{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/main/.schema/devbox.schema.json",
"packages": [
"go@1.24",
"gopls@latest",
"golangci-lint@latest",
"kubectl@latest",
"kustomize@latest",
"k9s@latest"
],
"shell": {
"init_hook": [
"echo 'Cloud Services dev environment ready'",
"export GOWORK=off"
],
"scripts": {
"test": "go test ./...",
"lint": "golangci-lint run ./...",
"build": "go build ./..."
}
}
}