Files
sonr/devbox.json
T

65 lines
1.3 KiB
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": [
2024-09-22 01:26:15 -04:00
"go@1.22",
2024-09-22 02:51:52 -04:00
"bun@latest",
2024-09-21 21:42:51 -04:00
"process-compose@latest"
2024-09-05 01:24:57 -04:00
],
2024-07-05 22:20:13 -04:00
"env": {
2024-09-19 02:04:22 -04:00
"CLOUDFLARE_API_TOKEN": "$CLOUDFLARE_API_TOKEN",
"PROJECT_DIR": "$HOME/ghq/github.com/onsonr/sonr",
"PROJECT_BIN": "$PROJECT_DIR/bin",
2024-09-16 01:06:00 -04:00
"GOPATH": "$HOME/go",
2024-09-19 02:04:22 -04:00
"PATH": "$HOME/go/bin:$PROJECT_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": {
2024-09-11 15:10:54 -04:00
"install": [
"make install"
2024-09-07 18:12:58 -04:00
],
"build": [
2024-09-21 21:42:51 -04:00
"make build"
2024-09-07 18:12:58 -04:00
],
2024-09-11 15:10:54 -04:00
"build:dwn": [
"make dwn"
],
2024-09-21 21:42:51 -04:00
"build:image": [
"make local-image"
],
2024-09-11 15:10:54 -04:00
"build:motr": [
"make motr"
],
"gen:proto": [
"make proto-gen"
],
"gen:pkl": [
2024-09-21 21:42:51 -04:00
"make pkl"
2024-09-16 01:06:00 -04:00
],
"gen:templ": [
2024-09-21 21:42:51 -04:00
"make templ"
],
2024-09-22 01:26:15 -04:00
"serve:air": [
"make air"
2024-09-11 15:10:54 -04:00
],
2024-09-22 01:26:15 -04:00
"serve:xcaddy": [
2024-09-21 21:42:51 -04:00
"make xcaddy"
2024-09-19 02:04:22 -04:00
],
2024-09-22 01:26:15 -04:00
"serve:sonr": [
2024-09-21 21:42:51 -04:00
"make sh-testnet"
2024-09-22 01:26:15 -04:00
],
"local": [
"process-compose -f ./deploy/process-compose.dev.yaml"
],
"testnet": [
"process-compose -f ./deploy/process-compose.yaml"
2024-09-07 18:12:58 -04:00
]
2024-07-05 22:20:13 -04:00
}
}
}