syllabus/.vscode/launch.json
2025-04-27 18:54:51 -04:00

21 lines
405 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "FastAPI: Uvicorn",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"app.main:app",
"--reload"
],
"jinja": true,
"justMyCode": true,
"env": {
"PYTHONPATH": "${workspaceFolder}/app",
}
}
]
}