Files
sonr/devbox.json
T

54 lines
1.1 KiB
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-09-05 01:24:57 -04:00
"packages": [
"go@1.22",
"templ@latest",
"go-task@latest",
2024-09-11 15:10:54 -04:00
"templ@latest",
2024-09-07 18:12:58 -04:00
"bun@latest",
2024-09-11 15:10:54 -04:00
"ipfs-cluster@latest",
"air@latest"
2024-09-05 01:24:57 -04:00
],
2024-07-05 22:20:13 -04:00
"env": {
"GOPATH": "$HOME/go",
2024-09-05 01:24:57 -04:00
"PATH": "$HOME/go/bin:$PATH",
"CHAIN_ID": "sonr-testnet-1",
"DENOM": "usnr",
"KEYRING": "test",
2024-09-14 12:47:25 -04:00
"MONIKER": "florence"
2024-07-05 22:20:13 -04:00
},
"shell": {
"scripts": {
2024-09-11 15:10:54 -04:00
"install": [
"make install"
2024-09-07 18:12:58 -04:00
],
"build": [
"make build",
"make local-image"
],
2024-09-11 15:10:54 -04:00
"build:dwn": [
"templ generate",
"make dwn"
],
"build:motr": [
"templ generate",
"make motr"
],
"gen:proto": [
"make proto-gen"
],
"gen:pkl": [
2024-09-14 12:47:25 -04:00
"go run github.com/apple/pkl-go/cmd/pkl-gen-go ./pkl/oidc.pkl",
2024-09-11 15:10:54 -04:00
"go run github.com/apple/pkl-go/cmd/pkl-gen-go ./pkl/orm.pkl",
"go run github.com/apple/pkl-go/cmd/pkl-gen-go ./pkl/txns.pkl"
],
"dev": [
"air"
],
2024-09-07 18:12:58 -04:00
"testnet": [
"devbox services up"
]
2024-07-05 22:20:13 -04:00
}
}
}