Files
ai-agent/.vscode/launch.json
T
t 3d47227fbd refactor: split backend into standalone server project
Remove embedded frontend and workflow editor assets, add standalone API deployment configuration, and retain the current backend service updates.
2026-08-20 21:46:55 +08:00

19 lines
382 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Agent Desk API",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/server/main.go",
"cwd": "${workspaceFolder}",
"buildFlags": "-tags=dev",
"args": [
"-config",
"${workspaceFolder}/config/config.yaml"
]
}
]
}