First, run the backend development server:
cd backend
vercel link
vercel env pull
# or manually set env vars
# cat .env.example > .env
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python server.pyOpen http://localhost:8081/docs with your browser to see the backend.
Then, run the frontend development server:
# in a separate terminal
cd frontend
npm i
npm run devOpen http://localhost:3000 with your browser to see the frontend.