mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
|
|
"packages": [
|
|
"go@1.22",
|
|
"templ@latest",
|
|
"go-task@latest",
|
|
"templ@latest",
|
|
"bun@latest",
|
|
"ipfs-cluster@latest",
|
|
"air@latest"
|
|
],
|
|
"env": {
|
|
"GOPATH": "$HOME/go",
|
|
"PATH": "$HOME/go/bin:$PATH",
|
|
"CHAIN_ID": "sonr-testnet-1",
|
|
"DENOM": "usnr",
|
|
"KEYRING": "test",
|
|
"MONIKER": "florence"
|
|
},
|
|
"shell": {
|
|
"scripts": {
|
|
"install": [
|
|
"make install"
|
|
],
|
|
"build": [
|
|
"make build",
|
|
"make local-image"
|
|
],
|
|
"build:dwn": [
|
|
"templ generate",
|
|
"make dwn"
|
|
],
|
|
"build:motr": [
|
|
"templ generate",
|
|
"make motr"
|
|
],
|
|
"gen:proto": [
|
|
"make proto-gen"
|
|
],
|
|
"gen:pkl": [
|
|
"go run github.com/apple/pkl-go/cmd/pkl-gen-go ./pkl/oidc.pkl",
|
|
"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"
|
|
],
|
|
"testnet": [
|
|
"devbox services up"
|
|
]
|
|
}
|
|
}
|
|
}
|