sonr/devbox.json
Prad Nukala 779a45121b
feature/proxied registration (#26)
* chore: ignore mprocs configuration files

* feat(macaroon): add macaroon module

* chore: update module dependencies
2024-09-26 18:01:49 -04:00

59 lines
1.2 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
"packages": [
"go@1.22",
"bun@latest",
"ipfs@latest",
"skate@latest",
"cloudflared@latest"
],
"env": {
"CLOUDFLARE_TUNNEL_TOKEN": "$(skate get CLOUDFLARE_TUNNEL_TOKEN)",
"GOPATH": "$HOME/go",
"PATH": "$HOME/go/bin:$PATH",
"TEMPL_EXPERIMENT": "rawgo",
"CHAIN_ID": "sonr-testnet-1",
"DENOM": "usnr",
"KEYRING": "test",
"MONIKER": "florence"
},
"shell": {
"scripts": {
"install": [
"make install",
"bun --cwd nebula run fetch:deps"
],
"build:docker": [
"make local-image"
],
"build:dwn": [
"make dwn"
],
"build:motr": [
"make motr"
],
"build:nebula": [
"bun --cwd nebula run build"
],
"build:sonrd": [
"make build"
],
"gen:proto": [
"make proto-gen"
],
"gen:pkl": [
"make pkl"
],
"gen:templ": [
"make templ"
],
"start:tunnel": [
"cloudflared tunnel run --token $(skate get CLOUDFLARE_TUNNEL_TOKEN)"
],
"watch:nebula": [
"bun --cwd nebula run watch"
]
}
}
}