#!/bin/sh # Exit immediately if a command exits with a non-zero status set -e # Step 4: Run FastAPI App echo "Starting FastAPI app..." uvicorn main:app --host 0.0.0.0 --port 7860