Launch config for experimental gui.

This commit is contained in:
2025-06-26 08:30:15 -07:00
parent c855786e61
commit 58b24b8575
2 changed files with 70 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,6 +1,7 @@
ca
.bots/*/sessions
.working
.env
CLAUDE.md
**/.claude/settings.local.json

69
.vscode/launch.json vendored Normal file
View File

@@ -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": [
"<node_internals>/**"
]
}
],
"compounds": [
{
"name": "Full Stack (Daemon + App)",
"configurations": [
"Daemon",
"App"
],
"stopAll": true,
"presentation": {
"hidden": false,
"group": "",
"order": 1
}
}
]
}