zauberkiste/.vscode/launch.json
2024-10-12 12:41:42 +02:00

16 lines
No EOL
361 B
JSON

{
"configurations": [
{
"name": "Python Debugger: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"main:app",
"--reload"
],
"jinja": true,
"cwd": "${workspaceFolder}/src"
}
]
}