Files
sonr/devbox.json
T

40 lines
1.2 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",
"packages": [
"go@latest",
"bun@latest",
2024-12-05 20:36:58 -05:00
"skate@latest",
"templ@latest",
"tigerbeetle@latest",
"process-compose@latest"
],
2024-07-05 22:20:13 -04:00
"env": {
"ROOT": "$(git rev-parse --show-toplevel)",
2024-09-16 01:06:00 -04:00
"GOPATH": "$HOME/go",
"GOBIN": "$GOPATH/bin",
2024-12-09 13:37:55 -05:00
"CHAIN_ID": "local-1",
"DENOM": "stake",
2024-12-05 20:36:58 -05:00
"KEYRING": "test",
"MONIKER": "florence",
"BINARY": "sonrd",
"ACC0_NAME": "acc0",
"ACC1_NAME": "acc1",
"ACC0_ADDRESS": "idx1efd63aw40lxf3n4mhf7dzhjkr453axur9vjt6y",
"ACC1_ADDRESS": "idx1hj5fveer5cjtn4wd6wstzugjfdxzl0xpecp0nd",
"ACC0_MNEMONIC": "$(skate get ACC0_MNEMONIC)",
"ACC1_MNEMONIC": "$(skate get ACC1_MNEMONIC)",
"TURNSTILE_SITE_KEY": "$(skate get TURNSTILE_SITE_KEY)",
"PC_NO_SERVER": "true",
2024-12-09 13:37:55 -05:00
"PC_PORT_NUM": "42069",
"PC_LOG_FILE": "./sonr.log"
2024-07-05 22:20:13 -04:00
},
"shell": {
"scripts": {
"start": ["process-compose up --hide-disabled"],
"up": ["process-compose up --detached --hide-disabled"],
"attach": ["process-compose attach"],
"down": ["fuser -k 1317/tcp", "fuser -k 3000/tcp"]
2024-07-05 22:20:13 -04:00
}
}
}