Skip to content

launch.config vscode debugger for fastapi

legosiv edited this page Jul 29, 2022 · 1 revision
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: FastAPI",
            "type": "python",
            "request": "launch",
            "module": "uvicorn",
            "args": [
                "backend.main:app"
            ],
            "jinja": true,
            "justMyCode": true
        }
    ]
}
Clone this wiki locally