feature:Add the debug setting on vscode (#606)

This commit is contained in:
Willem Jiang
2025-10-05 22:07:23 +08:00
committed by GitHub
parent 24f6905c18
commit 79b9cdb59a

16
.vscode/launch.json vendored
View File

@@ -86,6 +86,20 @@
"PYTHONPATH": "${workspaceFolder}"
}
},
{
"name": "Debug: python server",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/server.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONPATH": "${workspaceFolder}"
},
"args": [
"--reload"
]
},
{
"name": "Debug: nodejs web",
"type": "node",
@@ -101,7 +115,7 @@
"compounds": [
{
"name": "Launch Deerflow",
"configurations": ["Debug: server", "Debug: web"]
"configurations": ["Debug: python server", "Debug: nodejs web"]
}
]
}