sonr/devbox.json
Prad Nukala 81b9c99222 feat: add Usage: pkl [OPTIONS] COMMAND [ARGS]...
Options:
  -v, --version  Show the version and exit
  -h, --help     Show this message and exit

Commands:
  eval              Render pkl module(s)
  repl              Start a REPL session
  server            Run as a server that communicates over standard
                    input/output
  test              Run tests within the given module(s)
  project           Run commands related to projects
  download-package  Download package(s)

For more information, visit
https://pkl-lang.org/main/0.26.3/pkl-cli/index.html#usage directory for message and transaction prototypes
2024-09-05 16:38:44 -04:00

31 lines
822 B
JSON

{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
"packages": [
"go@1.22",
"templ@latest",
"commitizen@latest",
"goreleaser@latest",
"go-task@latest",
"bun@latest"
],
"env": {
"GOPATH": "$HOME/go",
"PATH": "$HOME/go/bin:$PATH",
"CHAIN_ID": "sonr-testnet-1",
"DENOM": "usnr",
"KEYRING": "test",
"MONIKER": "florence",
"MIN_GAS_PRICES": "0.0001usnr"
},
"shell": {
"scripts": {
"init": ["make install", "sh ./scripts/test_node.sh"],
"gen": ["make proto-gen", "make vault", "make templ"],
"build": ["make build", "make local-image"],
"testnet": ["make install", "make sh-testnet"],
"explorer": ["make explorer"],
"pkl-eval": ["bunx pkl eval ./pkl/msgs.pkl"]
}
}
}