Files
sonr/devbox.json
T

28 lines
816 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",
"packages": ["go@1.22", "bun@latest"],
2024-07-05 22:20:13 -04:00
"env": {
2024-09-19 02:04:22 -04:00
"CLOUDFLARE_API_TOKEN": "$CLOUDFLARE_API_TOKEN",
2024-09-16 01:06:00 -04:00
"GOPATH": "$HOME/go",
"PATH": "$HOME/go/bin:$PATH",
2024-09-21 21:42:51 -04:00
"TEMPL_EXPERIMENT": "rawgo",
2024-09-05 01:24:57 -04:00
"CHAIN_ID": "sonr-testnet-1",
2024-09-16 01:06:00 -04:00
"DENOM": "usnr",
"KEYRING": "test",
2024-09-21 21:42:51 -04:00
"MONIKER": "florence",
"ENV": "$ENVIRONMENT"
2024-07-05 22:20:13 -04:00
},
"shell": {
"scripts": {
"install": ["make install"],
"build": ["bun --cwd nebula run build", "make dwn", "make build"],
"docker": ["make local-image"],
"proto": ["make proto-gen"],
"pkl": ["make pkl"],
"templ": ["make templ"],
"proxy": ["./build/sonrd dwn-proxy"],
"watch:nebula": ["bun --cwd nebula run watch"]
2024-07-05 22:20:13 -04:00
}
}
}