sonr/devbox.json

24 lines
891 B
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-11-26 11:44:17 -05:00
"packages": ["go@1.22", "bun@latest", "gum@latest"],
2024-07-05 22:20:13 -04:00
"env": {
"GOPATH": "$HOME/go",
"PATH": "./build:$HOME/go/bin:$PATH",
"TEMPL_EXPERIMENT": "rawgo"
2024-07-05 22:20:13 -04:00
},
"shell": {
"scripts": {
2024-11-26 11:44:17 -05:00
"deploy-buf": ["gum spin --title='Deploying buf' -- make deploy-buf"],
"deploy-cdn": [
"gum spin --title='Generating PKL' -- make pkl-gen",
"gum spin --title='Generating Styles' -- make styles-gen",
"gum spin --title='Building Motr WASM' -- make motr-build",
"gum spin --title='Uploading to Bucket' -- make deploy-cdn"
],
2024-11-26 11:44:17 -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
}
}
}