Spaces:
Running
Running
File size: 345 Bytes
1ce6029 | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash
# Start Celery worker in the background
celery -A app.worker.celery_app worker --loglevel=info &
# Start FastAPI backend in the background
uvicorn app.api.main:app --host 0.0.0.0 --port 8000 &
# Start Streamlit frontend on port 7860 (Hugging Face default)
streamlit run frontend/app.py --server.port 7860 --server.address 0.0.0.0
|