zauberkiste/.vscode/launch.json

16 lines
361 B
JSON
Raw Permalink Normal View History

2024-10-12 12:41:42 +02:00
{
"configurations": [
{
"name": "Python Debugger: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"main:app",
"--reload"
],
"jinja": true,
"cwd": "${workspaceFolder}/src"
}
]
}