mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
18 lines
455 B
JSON
18 lines
455 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
|
|
"packages": ["mprocs@latest", "go@1.21"],
|
|
"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"],
|
|
"serve": ["mprocs"]
|
|
}
|
|
}
|
|
}
|