mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-24 13:33:44 +03:00
7 lines
103 B
Bash
7 lines
103 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
celery -A config.celery_app worker --autoscale 20 -l INFO
|