diff --git a/startup.sh b/startup.sh new file mode 100644 index 0000000..c21224a --- /dev/null +++ b/startup.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +echo "🔹 Installing dependencies..." +pip install --no-cache-dir --upgrade pip +pip install --no-cache-dir -r requirements.txt + +echo "🔹 Starting FastAPI server..." +exec uvicorn backend.main:app --host=0.0.0.0 --port=${PORT:-8000}