Spaces:
Paused
Paused
| set -e | |
| echo "==> Starting Celery worker in background..." | |
| celery -A celery_app.celery_app worker \ | |
| -P threads \ | |
| --loglevel=info \ | |
| --concurrency=4 & | |
| echo "==> Starting FastAPI (uvicorn) on port ${PORT:-7860}..." | |
| exec uvicorn main:app \ | |
| --host 0.0.0.0 \ | |
| --port "${PORT:-7860}" \ | |
| --workers 1 | |