refactor: adjust devbox configuration to reflect nebula changes

This commit is contained in:
Prad Nukala
2024-09-27 20:07:00 -04:00
parent fbf4819b5a
commit 439f7f984c
17 changed files with 1895 additions and 315 deletions
+15 -17
View File
@@ -8,35 +8,33 @@
"cloudflared@latest"
],
"env": {
"ACC0_ADDRESS": "idx1efd63aw40lxf3n4mhf7dzhjkr453axur9vjt6y",
"ACC0_MNEMONIC": "$(skate get ACC0_MNEMONIC)",
"ACC0_NAME": "acc0",
"ACC1_ADDRESS": "idx1hj5fveer5cjtn4wd6wstzugjfdxzl0xpecp0nd",
"ACC1_MNEMONIC": "$(skate get ACC1_MNEMONIC)",
"ACC1_NAME": "acc1",
"BINARY": "sonrd",
"TUNNEL_TOKEN": "$(skate get CLOUDFLARE_TUNNEL_TOKEN)",
"GOPATH": "$HOME/go",
"PATH": "$HOME/go/bin:$PATH",
"TEMPL_EXPERIMENT": "rawgo",
"CHAIN_ID": "sonr-testnet-1",
"DENOM": "usnr",
"KEYRING": "test",
"MONIKER": "florence"
"MONIKER": "florence",
"BINARY": "sonrd",
"ACC0_NAME": "acc0",
"ACC1_NAME": "acc1",
"ACC0_ADDRESS": "idx1efd63aw40lxf3n4mhf7dzhjkr453axur9vjt6y",
"ACC1_ADDRESS": "idx1hj5fveer5cjtn4wd6wstzugjfdxzl0xpecp0nd",
"ACC0_MNEMONIC": "$(skate get ACC0_MNEMONIC)",
"ACC1_MNEMONIC": "$(skate get ACC1_MNEMONIC)",
"TUNNEL_TOKEN": "$(skate get CLOUDFLARE_TUNNEL_TOKEN)",
"TEMPL_EXPERIMENT": "rawgo"
},
"shell": {
"scripts": {
"install": ["make install"],
"build:docker": ["make local-image"],
"build:dwn": ["make dwn"],
"build:motr": ["make motr"],
"build:nebula": ["bun --cwd nebula run build"],
"build:sonrd": ["make build"],
"build:motr": ["cd nebula && bun run build", "make motr"],
"build:nebula": ["cd nebula && bun run build"],
"build:sonrd": ["make dwn", "make build"],
"gen:proto": ["make proto-gen"],
"gen:pkl": ["make pkl"],
"gen:templ": ["make templ"],
"start:motr": ["make start-motr"],
"watch:nebula": ["bun --cwd nebula run watch"]
"start:motr": ["make templ", "make motr", "make start-motr"],
"start:testnet": ["make templ", "make install", "make sh-testnet"]
}
}
}