Created
June 7, 2018 10:01
-
-
Save dima-kov/6bde465c98cb067201b3d9c1c7ebbd5a to your computer and use it in GitHub Desktop.
Celery deploy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CELERYD_NODES="bookgo-worker" | |
CELERY_BIN="/var/sites/bookgo/env/bin/celery" | |
CELERY_APP="bocrok" | |
CELERYD_CHDIR="/var/sites/bookgo/src" | |
# Set logging level to DEBUG | |
CELERYD_LOG_LEVEL="DEBUG" | |
# %n will be replaced with the first part of the nodename. | |
CELERYD_LOG_FILE="/var/sites/bookgo/log/celery/%n%I.log" | |
CELERYD_PID_FILE="/var/run/celery/%n.pid" | |
CELERYD_USER="celery" | |
CELERYD_GROUP="celery" | |
# If enabled pid and log directories will be created if missing, | |
# and owned by the userid/group configured. | |
CELERY_CREATE_DIRS=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment