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-11-25 16:27:03 -05:00
|
|
|
"packages": [
|
|
|
|
"go@1.22",
|
|
|
|
"bun@latest",
|
|
|
|
"ipfs@latest",
|
|
|
|
"templ@latest",
|
|
|
|
"gum@latest"
|
|
|
|
],
|
2024-07-05 22:20:13 -04:00
|
|
|
"env": {
|
2024-09-16 01:06:00 -04:00
|
|
|
"GOPATH": "$HOME/go",
|
2024-10-03 19:25:42 -04:00
|
|
|
"PATH": "./build:$HOME/go/bin:$PATH",
|
2024-11-25 13:54:33 -05:00
|
|
|
"TEMPL_EXPERIMENT": "rawgo"
|
2024-07-05 22:20:13 -04:00
|
|
|
},
|
|
|
|
"shell": {
|
2024-11-25 16:27:03 -05:00
|
|
|
"init_hook": [
|
|
|
|
"./scripts/init_env.sh"
|
|
|
|
],
|
2024-07-05 22:20:13 -04:00
|
|
|
"scripts": {
|
2024-11-25 16:27:03 -05:00
|
|
|
"start-local": [
|
|
|
|
"cd deploy/local && devbox services up"
|
|
|
|
],
|
|
|
|
"start-testnet": [
|
|
|
|
"cd deploy/testnet && devbox services up"
|
|
|
|
],
|
|
|
|
"start-gex": [
|
|
|
|
"go install github.com/cosmos/gex@latest",
|
|
|
|
"gex"
|
|
|
|
]
|
2024-07-05 22:20:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|