{ "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", }, ] }