chore: add nebula assets to proxy server

This commit is contained in:
Prad Nukala
2024-09-25 22:09:15 -04:00
parent de05777261
commit a785d3a01f
14 changed files with 1959 additions and 52 deletions
+12 -5
View File
@@ -1,7 +1,8 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.12.0/.schema/devbox.schema.json",
"packages": [
"go@1.22"
"go@1.22",
"bun@latest"
],
"env": {
"CLOUDFLARE_API_TOKEN": "$CLOUDFLARE_API_TOKEN",
@@ -28,6 +29,9 @@
"build:image": [
"make local-image"
],
"build:nebula": [
"cd nebula && bun run build"
],
"gen:proto": [
"make proto-gen"
],
@@ -37,9 +41,6 @@
"gen:templ": [
"make templ"
],
"serve:air": [
"make air"
],
"serve:ipfs": [
"make ipfs"
],
@@ -50,7 +51,13 @@
"make sh-testnet"
],
"serve:proxy": [
"make sh-testnet"
"go run ./cmd/sonrd/main.go dwn-proxy"
],
"watch:air": [
"make air"
],
"watch:nebula": [
"cd nebula && bun run watch"
]
}
}