mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-24 14:03:45 +03:00
9 lines
109 B
Plaintext
9 lines
109 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit
|
||
|
set -o pipefail
|
||
|
set -o nounset
|
||
|
|
||
|
|
||
|
exec celery -A config.celery_app worker -l INFO
|