Files
sonr/devbox.json
T

63 lines
1.2 KiB
JSON
Raw Normal View History

2024-07-05 22:20:13 -04:00
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
2024-09-14 14:27:45 -04:00
"packages": [
"go@1.22",
"bun@latest",
"process-compose@latest"
2024-09-14 14:27:45 -04:00
],
2024-07-05 22:20:13 -04:00
"env": {
"CLOUDFLARE_API_TOKEN": "$CLOUDFLARE_API_TOKEN",
2024-07-05 22:20:13 -04:00
"GOPATH": "$HOME/go",
2024-09-14 14:27:45 -04:00
"PATH": "$HOME/go/bin:$PATH",
"TEMPL_EXPERIMENT": "rawgo",
2024-09-14 14:27:45 -04:00
"CHAIN_ID": "sonr-testnet-1",
"DENOM": "usnr",
"KEYRING": "test",
"MONIKER": "florence",
"ENV": "$ENVIRONMENT"
2024-07-05 22:20:13 -04:00
},
"shell": {
"scripts": {
2024-09-14 14:27:45 -04:00
"install": [
"make install"
],
"build": [
"make build"
2024-09-14 14:27:45 -04:00
],
"build:dwn": [
"make dwn"
],
"build:image": [
"make local-image"
],
2024-09-14 14:27:45 -04:00
"build:motr": [
"make motr"
],
"gen:proto": [
"make proto-gen"
],
"gen:pkl": [
"make pkl"
],
"gen:templ": [
"make templ"
],
"serve:air": [
"make air"
2024-09-14 14:27:45 -04:00
],
"serve:xcaddy": [
"make xcaddy"
],
"serve:sonr": [
"make sh-testnet"
],
"local": [
"process-compose -f ./deploy/process-compose.dev.yaml"
2024-09-14 14:27:45 -04:00
],
"testnet": [
"process-compose -f ./deploy/process-compose.yaml"
2024-09-14 14:27:45 -04:00
]
2024-07-05 22:20:13 -04:00
}
}
}