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
Bash
8 lines
108 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
exec celery -A config.celery_app worker -l INFO
|