ManganelliOrdiniApi/.vscode/launch.json
2025-06-17 12:49:05 +02:00

14 lines
231 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": ["main:app", "--reload"],
"jinja": true
}
]
}