Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
11 lines
177 B
Bash
11 lines
177 B
Bash
#!/bin/bash
|
|
|
|
celery -A config worker --loglevel=info &
|
|
|
|
sleep 10 && celery -A config beat --loglevel=info &
|
|
sleep 10 && celery -A config flower --loglevel=info &
|
|
|
|
wait
|
|
|
|
exit $?
|