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

44 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run FastAPI Server",
"type": "shell",
"command": "uvicorn",
"args": [
"main:app",
"--reload",
"--host",
"0.0.0.0",
"--port",
"8000"
],
"options": {
"cwd": "${workspaceFolder}/app"
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new"
},
"runOptions": {
"runOn": "folderOpen"
}
},
{
"label": "Install Requirements",
"type": "shell",
"command": "pip",
"args": [
"install",
"-r",
"requirements.txt"
],
"options": {
"cwd": "${workspaceFolder}"
}
}
]
}