2025-02-19 16:40:13 +01:00

25 lines
674 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug: Backend",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"cwd": "${workspaceFolder}/backend",
"args": [
"app.main:app",
"--reload",
"--reload-include",
"backend/src",
"--port",
"8080"
],
"jinja": true,
"justMyCode": false,
"consoleName": "Backend",
"preLaunchTask": "Start DB",
"python": "${workspaceFolder}/venv/bin/python",
},
]
}