mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-28 04:03:43 +03:00
8 lines
108 B
Plaintext
8 lines
108 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit
|
||
|
set -o pipefail
|
||
|
set -o nounset
|
||
|
|
||
|
exec celery -A config.celery_app worker -l INFO
|