mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
* feat: add new supported attestation formats to genesis * feat: refactor keyType to keytype enum * refactor: remove unused imports and code * refactor: update main.go to use src package * refactor: move web-related structs from to * refactor: move client middleware package to root * refactor: remove unused IndexedDB dependency * feat: update worker implementation to use * feat: add Caddyfile and Caddy configuration for vault service * refactor(config): move keyshare and address to Motr config * fix: validate service origin in AllocateVault * chore: remove IndexedDB configuration * feat: add support for IPNS-based vault access
64 lines
1.5 KiB
JSON
64 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
|
|
"packages": [
|
|
"go@1.22",
|
|
"templ@latest",
|
|
"bun@latest",
|
|
"ipfs-cluster@latest",
|
|
"air@latest",
|
|
"commitizen@latest"
|
|
],
|
|
"env": {
|
|
"CLOUDFLARE_API_TOKEN": "$CLOUDFLARE_API_TOKEN",
|
|
"PROJECT_DIR": "$HOME/ghq/github.com/onsonr/sonr",
|
|
"PROJECT_BIN": "$PROJECT_DIR/bin",
|
|
"GOPATH": "$HOME/go",
|
|
"PATH": "$HOME/go/bin:$PROJECT_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 ./config/pkl/dwn.pkl",
|
|
"go run github.com/apple/pkl-go/cmd/pkl-gen-go ./config/pkl/orm.pkl",
|
|
"go run github.com/apple/pkl-go/cmd/pkl-gen-go ./config/pkl/web.pkl",
|
|
"go run github.com/apple/pkl-go/cmd/pkl-gen-go ./config/pkl/txns.pkl"
|
|
],
|
|
"gen:templ": [
|
|
"templ generate"
|
|
],
|
|
"dev": [
|
|
"air"
|
|
],
|
|
"start-proxy": [
|
|
"./bin/caddy run --config ./config/caddy/caddy.conf"
|
|
],
|
|
"testnet": [
|
|
"make xcaddy",
|
|
"devbox services up"
|
|
]
|
|
}
|
|
}
|
|
}
|