{ "version": "0.0.1", "configurations": [ { "name": "Frontend (Vite)", "runtimeExecutable": "npm", "runtimeArgs": ["run", "dev"], "cwd": "frontend", "port": 5173 }, { "name": "Backend (FastAPI/uvicorn)", "runtimeExecutable": "python", "runtimeArgs": ["-m", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"], "cwd": "backend", "port": 8000 } ] }