#!/usr/bin/env bash # Exit immediately if a command fails set -e # Activate virtual environment source .venv/bin/activate # Start the backend python -m uvicorn server:app --reload --port 8000