

First, run the backend development server:
cd backendvercel linkvercel env pull# or manually set env vars# cat .env.example > .envpython -m venv .venvsource .venv/bin/activatepip install -r requirements.txtpython server.py
Open http://localhost:8081/docs with your browser to see the backend.
Then, run the frontend development server:
# in a separate terminalcd frontendnpm inpm run dev
Open http://localhost:3000 with your browser to see the frontend.