Spaces:
Running
Running
File size: 330 Bytes
ef1f114 b61bb63 | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
# Start the Celery worker in the background
echo "Starting Celery worker..."
celery -A app.worker.celery_app worker --loglevel=info -P solo &
# Start the FastAPI server in the foreground
echo "Starting FastAPI server..."
uvicorn main:app --host 0.0.0.0 --port ${PORT:-7860} --forwarded-allow-ips='*' --proxy-headers
|