{ "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}" } } ] }