This repository contains a minimal skeleton for a React frontend (Vite) and a FastAPI backend.
- frontend/ - Vite + React app
- backend/ - FastAPI app
cd frontend
npm install
npm run devcd backend
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reloadThe frontend dev server runs on http://localhost:5173 and the backend on http://localhost:8000 by default.
Important for team members: Each person needs to set up their own Firebase service account key.
👉 See backend/TEAM_SETUP.md for setup instructions
Quick steps:
- Get Firebase service account key from Firebase Console
- Save it as
backend/firebase-service-account.json - Create
backend/.envwith:FIREBASE_SERVICE_ACCOUNT_PATH=./firebase-service-account.json
Note: These files are in .gitignore and won't be committed to Git. Each team member needs their own copy.