Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m54s
14 lines
268 B
Bash
14 lines
268 B
Bash
#!/bin/bash
|
|
|
|
echo "Installing setuptools for Celery..."
|
|
/opt/venv/bin/python -m pip install setuptools
|
|
|
|
celery -A config worker --loglevel=info &
|
|
|
|
sleep 10 && celery -A config beat --loglevel=info &
|
|
sleep 10 && celery -A config flower --loglevel=info &
|
|
|
|
wait
|
|
|
|
exit $?
|