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