sonr/devbox.json
2024-08-10 17:55:28 -04:00

17 lines
449 B
JSON

{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
"packages": ["golangci-lint@latest", "go@1.21", "air@latest"],
"env": {
"GOPATH": "$HOME/go",
"PATH": "$HOME/go/bin:$PATH"
},
"shell": {
"scripts": {
"install": ["make install"],
"proto": ["make proto-gen"],
"build": ["go build -o ./bin/sonrd ./cmd/sonrd"],
"testnet": ["make sh-testnet"]
}
}
}