Files
AmazingDoc/.vscode/launch.json
2025-08-11 16:58:45 +02:00

17 lines
341 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"app.main:app",
"--reload"
],
"justMyCode": true
}
]
}