sonr/devbox.json

39 lines
1.1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
"packages": [
"bun@latest",
"gum@latest",
"skate@latest",
"templ@latest",
"tigerbeetle@latest",
"process-compose@latest"
],
"env": {
"GOPATH": "$HOME/go",
"PATH": "./build:$HOME/go/bin:$PATH",
"CHAIN_ID": "local-1",
"DENOM": "stake",
"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",
"PC_PORT_NUM": "42069",
"PC_LOG_FILE": "./sonr.log"
},
"shell": {
"scripts": {
"start": ["process-compose up --hide-disabled"],
"start:detached": ["process-compose up --detached --hide-disabled"],
"attach": ["process-compose attach"],
"stop": ["process-compose down "]
}
}
}