From 4eb294d85604180cfe6ac130e1ec7473092bf794 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Mon, 9 Dec 2024 19:40:06 -0500 Subject: [PATCH] refactor: remove devbox configuration --- proto/devbox.json | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 proto/devbox.json diff --git a/proto/devbox.json b/proto/devbox.json deleted file mode 100644 index b062c7821..000000000 --- a/proto/devbox.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "$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": [ - "gum spin --title='Deploying buf' -- make deploy-buf", - "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" - ], - "devnet": [ - "cd deploy/devnet && devbox services up" - ], - "testnet": [ - "cd deploy/testnet && devbox services up" - ] - } - } -}