{ "version": "0.0.1", "configurations": [ { "name": "backend", "runtimeExecutable": "python", "runtimeArgs": ["-m", "uvicorn", "server.main:app", "--host", "127.0.0.1", "--port", "8888", "--reload"], "port": 8888 }, { "name": "frontend", "runtimeExecutable": "cmd", "runtimeArgs": ["/c", "cd ui && npx vite"], "port": 5173 } ] }