Files
urbanLifeline/.vscode/launch.json

27 lines
686 B
JSON
Raw Permalink Normal View History

2026-03-02 17:12:17 +08:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: FastAPI Server",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/difyPlugin/main.py",
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"PYTHONUNBUFFERED": "1"
},
"cwd": "${workspaceFolder}/difyPlugin",
"args": []
},
{
"name": "Python: Debug Plugin",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/difyPlugin/app/plugins/pdf/__init__.py",
"console": "integratedTerminal",
"justMyCode": true,
"cwd": "${workspaceFolder}/difyPlugin"
}
]
}