7 lines
81 B
Bash
7 lines
81 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit
|
||
|
set -o nounset
|
||
|
|
||
|
celery -A "$APP_NAME" worker -l info
|