| 12345678910111213141516171819202122232425262728293031323334353637 | # Path to the virtualenv. This could be /usr if python#   is in /usr/bin#BIN_PATH="/path/to/.virtualenvs/myvenv"# Which Python to use#ENV_PYTHON="$BIN_PATH/bin/python"# Where to chdir before launching celeryd#CELERYD_CHDIR="$app_path/current"# Path to celery - which might be in a virtualenv#CELERY="$BIN_PATH/bin/celery"# Passed into celery multi#CELERYD="-m celery worker --detach"# Log and PID files#CELERYD_LOG_FILE="/path/to/var/log/celeryd/app_name-celeryworker.log"#CELERYD_PID_FILE="/path/to/var/run/celeryd/app_name-celeryworker.pid"# Sets the verbosity of the celeryd logging.#CELERYD_LOG_LEVEL="INFO"# Define the loader that celeryd should use for loading in configs.#CELERY_LOADER=""# User and group information for directories#CELERYD_USER="celery"#CELERYD_GROUP="celery"# Default arguments to be passed into celeryd.#CELERYD_OPTS=""# e.g. add app option:#CELERYD="-A proj.tasks:app"# Set the task modules that you want to have celery load#CELERY_IMPORTS=("tasks", )
 |