9 lines
184 B
Bash
9 lines
184 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Starting Celery worker..."
|
|
celery -A app.tasks.celery_app worker \
|
|
--loglevel=info \
|
|
--concurrency=4 \
|
|
-Q default,analytics,notifications,devices
|