This project is split into two main parts:
- frontend/: A React + Vite project (Source code in
src/). - backend/: A Python FastAPI project.
- scripts/: Utility scripts for development.
- supabase/: Supabase configuration and migrations.
You can now run commands from the root directory:
# Install all dependencies
npm run install:all
# Run frontend
npm run dev
# Run backend
npm run dev:backendcd frontend
npm run devsource .venv/bin/activate # On Windows use .venv\Scripts\activate
pip install -r requirements.txt
uvicorn app.main:app --reload
## Deployment
The frontend is configured for deployment on Vercel using the `vercel.json` in the root directory.