{ "version": "0.2.0", "configurations": [ { "name": "Python: FastAPI", "type": "python", "request": "launch", "module": "uvicorn", "args": [ "app.main:app" ], "jinja": true, "justMyCode": false }, { "name": "Attach", "type": "python", "request": "attach", "pathMappings": [ { "localRoot": "${workspaceFolder}", "remoteRoot": "." } ], "connect": { "host": "192.168.1.49", "port": 5678 } } ] }