Files
sonr/devbox.json
T

29 lines
752 B
JSON
Raw Normal View History

2024-07-05 22:20:13 -04:00
{
2024-08-10 17:55:28 -04:00
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
2024-09-05 01:24:57 -04:00
"packages": [
"go@1.22",
"templ@latest",
"commitizen@latest",
"goreleaser@latest",
"go-task@latest"
],
2024-07-05 22:20:13 -04:00
"env": {
"GOPATH": "$HOME/go",
2024-09-05 01:24:57 -04:00
"PATH": "$HOME/go/bin:$PATH",
"CHAIN_ID": "sonr-testnet-1",
"DENOM": "usnr",
"KEYRING": "test",
"MONIKER": "florence",
"MIN_GAS_PRICES": "0.0001usnr"
2024-07-05 22:20:13 -04:00
},
"shell": {
"scripts": {
2024-09-05 14:18:22 -04:00
"init": ["make install", "sh ./scripts/test_node.sh"],
2024-09-05 01:24:57 -04:00
"gen": ["make proto-gen", "make vault", "make templ"],
2024-08-31 18:54:14 -04:00
"build": ["make build", "make local-image"],
2024-09-05 01:24:57 -04:00
"testnet": ["make install", "make sh-testnet"],
2024-09-05 02:01:38 -04:00
"explorer": ["make explorer"]
2024-07-05 22:20:13 -04:00
}
}
}