#!/bin/bash # Start the FastAPI backend uvicorn src.api.main:app --host 0.0.0.0 --port 8000 & # Wait a bit for the backend to start sleep 5 # Start the Next.js frontend npm start -- -p 3000