mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
- **refactor: update devbox configuration and scripts** - **refactor: remove web documentation** - **refactor: move resolver formatter to services package** - **refactor: Rename x/vault -> x/dwn and x/service -> x/svc** - **refactor: remove unused dependencies and simplify module imports** - **refactor: remove dependency on DWN.pkl** - **refactor: Move IPFS interaction functions to common package** - **refactor: remove unused TUI components** - **feat: add gum package and update devbox configuration** - **refactor: rename Assertion to Account and update related code** - **fix: resolve rendering issue in login modal** - **refactor: migrate build system from Taskfile to Makefile** - **refactor: Deployment setup** - **refactor: Update Credential table to match WebAuthn Credential Descriptor** - **feat: add fast reflection methods for Capability and Resource** - **fix: update devbox lockfile** - **feat: add support for parent field and resources list in Capability message** - **feature/1149-vault-allocation-error** - **fix: adjust fullscreen modal close button margin**
24 lines
891 B
JSON
24 lines
891 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
|
|
"packages": ["go@1.22", "bun@latest", "gum@latest"],
|
|
"env": {
|
|
"GOPATH": "$HOME/go",
|
|
"PATH": "./build:$HOME/go/bin:$PATH",
|
|
"TEMPL_EXPERIMENT": "rawgo"
|
|
},
|
|
"shell": {
|
|
"scripts": {
|
|
"deploy-buf": ["gum spin --title='Deploying buf' -- make deploy-buf"],
|
|
"deploy-cdn": [
|
|
"gum spin --title='Generating PKL' -- make pkl-gen",
|
|
"gum spin --title='Generating Styles' -- make styles-gen",
|
|
"gum spin --title='Building Motr WASM' -- make motr-build",
|
|
"gum spin --title='Uploading to Bucket' -- make deploy-cdn"
|
|
],
|
|
"start-local": ["cd deploy/local && devbox services up"],
|
|
"start-testnet": ["cd deploy/testnet && devbox services up"],
|
|
"start-gex": ["go install github.com/cosmos/gex@latest", "gex"]
|
|
}
|
|
}
|
|
}
|