#!/bin/bash set -e # Start the FastAPI server (serves both API and static frontend) cd /app exec uvicorn server.app:app --host 0.0.0.0 --port 7860