Initial cloud-services repo - gateway service + pkg modules

This commit is contained in:
Chris Rai
2026-01-30 23:14:52 -05:00
commit fbb820d7b3
1037 changed files with 171318 additions and 0 deletions

22
devbox.json Normal file
View File

@@ -0,0 +1,22 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/main/.schema/devbox.schema.json",
"packages": [
"go@1.24",
"gopls@latest",
"golangci-lint@latest",
"kubectl@latest",
"kustomize@latest",
"k9s@latest"
],
"shell": {
"init_hook": [
"echo 'Cloud Services dev environment ready'",
"export GOWORK=off"
],
"scripts": {
"test": "go test ./...",
"lint": "golangci-lint run ./...",
"build": "go build ./..."
}
}
}