From 58b24b85752f35a12eb9a89f7af7caaf367da3c9 Mon Sep 17 00:00:00 2001 From: Paul Payne Date: Thu, 26 Jun 2025 08:30:15 -0700 Subject: [PATCH] Launch config for experimental gui. --- .gitignore | 1 + .vscode/launch.json | 69 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 4030331..0366657 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ ca .bots/*/sessions .working +.env CLAUDE.md **/.claude/settings.local.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..e66f0a7 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,69 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Daemon", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${workspaceFolder}/experimental/daemon/main.go", + "console": "integratedTerminal", + "env": { + "GO_ENV": "development" + }, + "args": [], + "cwd": "${workspaceFolder}", + "stopOnEntry": false, + "showLog": true + }, + { + "name": "Daemon (Debug)", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "${workspaceFolder}/experimental/daemon/main.go", + "console": "integratedTerminal", + "env": { + "GO_ENV": "development" + }, + "args": [], + "cwd": "${workspaceFolder}", + "stopOnEntry": false, + "showLog": true + }, + { + "name": "App", + "type": "node", + "request": "launch", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run", + "dev" + ], + "cwd": "${workspaceFolder}/experimental/app", + "console": "integratedTerminal", + "env": { + "BROWSER": "none" + }, + "autoAttachChildProcesses": true, + "skipFiles": [ + "/**" + ] + } + ], + "compounds": [ + { + "name": "Full Stack (Daemon + App)", + "configurations": [ + "Daemon", + "App" + ], + "stopAll": true, + "presentation": { + "hidden": false, + "group": "", + "order": 1 + } + } + ] +} \ No newline at end of file