10 lines
120 B
Bash
10 lines
120 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
# wait for RabbitMQ server to start
|
|
sleep 10
|
|
|
|
celery -A core worker -l INFO
|