This project is split into two main parts:
- frontend/: A React + Vite project.
- backend/: A Python FastAPI project.
cd frontend
npm install
npm run devcd backend
python -m venv .venv
source .venv/bin/activate # On Windows use `.venv\Scripts\activate`
pip install -r requirements.txt
# Setup .env file with your Supabase credentials
# cp .env.example .env
uvicorn app.main:app --reloadThe frontend is configured for deployment on Vercel using the vercel.json in the root directory.