#!/bin/bash # 启动 FastAPI 应用 echo "Starting FastAPI..." uvicorn app:app --host 0.0.0.0 --port 8080 --reload