{ "version": "0.2.0", "configurations": [ { "name": "FastAPI Server", "type": "python", "request": "launch", "module": "uvicorn", "args": [ "main:app", "--reload", "--host", "0.0.0.0", "--port", "8000" ], "jinja": true, "cwd": "${workspaceFolder}/app", "console": "integratedTerminal" } ] }