Files
sonr/devbox.json
T

46 lines
933 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-09-07 18:12:58 -04:00
"bun@latest",
"ipfs-cluster@latest"
2024-09-05 01:24:57 -04:00
],
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-07 18:12:58 -04:00
"init": [
"make install",
"sh ./scripts/test_node.sh"
],
"gen": [
"make proto-gen",
"make templ",
"make dwn"
],
"build": [
"make build",
"make local-image"
],
"testnet": [
"make install",
"devbox services up"
],
"pkl-eval": [
"bunx pkl eval ./pkl/msgs.pkl"
]
2024-07-05 22:20:13 -04:00
}
}
}