| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Backend", | |
| "type": "shell", | |
| "command": "cd backend && .venv/Scripts/python -m uvicorn app.main:app --reload", | |
| "presentation": { | |
| "panel": "dedicated" | |
| } | |
| }, | |
| { | |
| "label": "Frontend", | |
| "type": "shell", | |
| "command": "cd frontend && npm run dev", | |
| "presentation": { | |
| "panel": "dedicated" | |
| } | |
| }, | |
| { | |
| "label": "Start All", | |
| "dependsOn": ["Backend", "Frontend"] | |
| } | |
| ] | |
| } | |