TraceStudio/.vscode/launch.json

47 lines
1.0 KiB
JSON
Raw Normal View History

2026-01-13 00:29:18 +08:00
{
"version": "0.2.0",
"configurations": [
{
"name": "FastAPI: Uvicorn (Local Debug)",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"server.main:app",
"--host",
"127.0.0.1",
"--port",
"8000",
"--reload"
],
"env": {
"PYTHONPATH": "${workspaceFolder}"
},
"cwd": "${workspaceFolder}",
"justMyCode": true,
"console": "integratedTerminal"
},
{
"name": "FastAPI: Debug Mode (debugpy wait)",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/server/debug_run.py",
"env": {
"PYTHONPATH": "${workspaceFolder}"
},
"cwd": "${workspaceFolder}",
"justMyCode": true,
"console": "integratedTerminal"
},
{
"name": "Attach to debugpy (5678)",
"type": "python",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
}
}
]
}