#!/bin/bash # Run database migrations echo "Running database migrations..." alembic upgrade head # Start the FastAPI application echo "Starting FastAPI application..." uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload