Files
ai-agent/.vscode/tasks.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

16 lines
255 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "server:dev",
"type": "shell",
"command": "make dev",
"options": {
"cwd": "${workspaceFolder}"
},
"isBackground": true,
"problemMatcher": []
}
]
}