mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-12-01 07:13:43 +03:00
9 lines
101 B
Plaintext
9 lines
101 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit
|
||
|
set -o pipefail
|
||
|
set -o nounset
|
||
|
|
||
|
|
||
|
exec celery -A conf.celery beat -l INFO
|