#!/bin/bash # Exit immediately if a command exits with a non-zero status. set -e # Run database migrations (if any) # alembic upgrade head # Start the FastAPI application exec uvicorn src.main:app --host 0.0.0.0 --port ${API_PORT:-8001}