Files
sonr/devbox.json
T

30 lines
779 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",
"packages": [
"go@1.23",
"bun@latest",
"gum@latest"
],
2024-07-05 22:20:13 -04:00
"env": {
2024-09-16 01:06:00 -04:00
"GOPATH": "$HOME/go",
"PATH": "./build:$HOME/go/bin:$PATH",
2024-11-26 22:05:50 -05:00
"TEMPL_EXPERIMENT": "rawgo"
2024-07-05 22:20:13 -04:00
},
"shell": {
"scripts": {
"deploy": [
2024-11-26 22:05:50 -05:00
"gum spin --title='Generating PKL' -- make pkl-gen",
"gum spin --title='Generating Styles' -- make tailwind-gen",
2024-11-26 22:05:50 -05:00
"gum spin --title='Building Motr WASM' -- make motr-build",
"gum spin --title='Uploading to Bucket' -- make deploy-cdn"
],
"devnet": [
"cd deploy/devnet && devbox services up"
],
"testnet": [
"cd deploy/testnet && devbox services up"
]
2024-07-05 22:20:13 -04:00
}
}
}