From fdd46859b9327b2a9c0a59cb4cd657405609299e Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sat, 30 Aug 2025 22:04:52 +0200 Subject: [PATCH] Add environment variables for development configuration in launch.json --- .vscode/launch.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7f4175c..cb01dbe 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,6 +10,10 @@ "request": "launch", "mode": "auto", "program": "${workspaceFolder}/cmd/server/main.go", + "env": { + "GO_ENV": "development", + "LLAMACTL_REQUIRE_MANAGEMENT_AUTH": "false" + }, } ] } \ No newline at end of file