3d47227fbd
Remove embedded frontend and workflow editor assets, add standalone API deployment configuration, and retain the current backend service updates.
19 lines
382 B
JSON
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"
|
|
]
|
|
}
|
|
]
|
|
}
|