Install dependencies:
# Backend dependencies
cd api
python3 -m pip install -r requirements.txt
# Frontend dependencies
cd ../frontend
npm installRun both frontend and backend in development mode:
./dev.shThis will start:
- Backend API at http://localhost:8000
- Frontend at http://localhost:3000