Spaces:
Running
Running
File size: 318 Bytes
26a0c00 0552469 26a0c00 0552469 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/bash
set -e
echo "🚀 Starting Document AI Analyst..."
echo "📂 Working directory: $(pwd)"
# Navigate to backend directory
cd /app/backend
# Start FastAPI with uvicorn
exec uvicorn app.main:app \
--host 0.0.0.0 \
--port 7860 \
--workers 1 \
--log-level info \
--timeout-keep-alive 120
|