syllabus/.vscode/launch.json
2026-01-08 13:26:15 -05:00

24 lines
526 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "FastAPI Server",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"main:app",
"--reload",
"--host",
"0.0.0.0",
"--port",
"8000"
],
"jinja": true,
"cwd": "${workspaceFolder}/app",
"console": "integratedTerminal"
}
]
}