Spaces:
Sleeping
Sleeping
File size: 297 Bytes
6aa5056 | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash
# Start Celery worker in the background
echo "Starting Celery worker..."
celery -A src.celery_app worker --loglevel=info &
# Start FastAPI server
# Using exec to make uvicorn the main process (PID 1)
echo "Starting FastAPI server..."
exec uvicorn main:app --host 0.0.0.0 --port 7860
|