mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
63 lines
1.2 KiB
JSON
63 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
|
|
"packages": [
|
|
"go@1.22",
|
|
"bun@latest",
|
|
"process-compose@latest"
|
|
],
|
|
"env": {
|
|
"CLOUDFLARE_API_TOKEN": "$CLOUDFLARE_API_TOKEN",
|
|
"GOPATH": "$HOME/go",
|
|
"PATH": "$HOME/go/bin:$PATH",
|
|
"TEMPL_EXPERIMENT": "rawgo",
|
|
"CHAIN_ID": "sonr-testnet-1",
|
|
"DENOM": "usnr",
|
|
"KEYRING": "test",
|
|
"MONIKER": "florence",
|
|
"ENV": "$ENVIRONMENT"
|
|
},
|
|
"shell": {
|
|
"scripts": {
|
|
"install": [
|
|
"make install"
|
|
],
|
|
"build": [
|
|
"make build"
|
|
],
|
|
"build:dwn": [
|
|
"make dwn"
|
|
],
|
|
"build:image": [
|
|
"make local-image"
|
|
],
|
|
"build:motr": [
|
|
"make motr"
|
|
],
|
|
"gen:proto": [
|
|
"make proto-gen"
|
|
],
|
|
"gen:pkl": [
|
|
"make pkl"
|
|
],
|
|
"gen:templ": [
|
|
"make templ"
|
|
],
|
|
"serve:air": [
|
|
"make air"
|
|
],
|
|
"serve:xcaddy": [
|
|
"make xcaddy"
|
|
],
|
|
"serve:sonr": [
|
|
"make sh-testnet"
|
|
],
|
|
"local": [
|
|
"process-compose -f ./deploy/process-compose.dev.yaml"
|
|
],
|
|
"testnet": [
|
|
"process-compose -f ./deploy/process-compose.yaml"
|
|
]
|
|
}
|
|
}
|
|
}
|