#!/bin/sh set -e echo "Running database migrations..." alembic upgrade head echo "Starting uvicorn..." exec uvicorn app.main:app \ --host 0.0.0.0 \ --port 8000 \ --no-server-header \ --proxy-headers \ --forwarded-allow-ips '*'