AICEO / start.sh
mgbam's picture
Update start.sh
94b2bf9 verified
raw
history blame
253 Bytes
#!/bin/bash
# Start Redis
redis-server &
# Start FastAPI
uvicorn app.main:app --host 0.0.0.0 --port 7860 &
# Start Celery (from correct path)
celery -A celery_worker worker --loglevel=info &
# Start Streamlit
streamlit run app.py --server.port 7861