Add vscode debug config

This commit is contained in:
2025-08-11 16:58:45 +02:00
parent 0c6d008368
commit f87834a1b3
2 changed files with 16 additions and 0 deletions

16
.vscode/launch.json vendored Normal file
View File

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

Binary file not shown.