This is a NextJS starter in Firebase Studio.
To get started, take a look at src/app/page.tsx.
The backend is a FastAPI application. You need to run it in a separate terminal.
.\run_backend.ps1Or manually:
.\.venv\Scripts\Activate.ps1
cd backend
uvicorn main:app --reload --port 8000In a new terminal:
npm run devThe frontend will be available at http://localhost:9002 The backend will be available at http://localhost:8000