celeryd.sysconfig 1016 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Path to the virtualenv. This could be /usr if python
  2. # is in /usr/bin
  3. #BIN_PATH="/path/to/.virtualenvs/myvenv"
  4. # Which Python to use
  5. #ENV_PYTHON="$BIN_PATH/bin/python"
  6. # Where to chdir before launching celeryd
  7. #CELERYD_CHDIR="$app_path/current"
  8. # Path to celery - which might be in a virtualenv
  9. #CELERY="$BIN_PATH/bin/celery"
  10. # Passed into celery multi
  11. #CELERYD="-m celery worker --detach"
  12. # Log and PID files
  13. #CELERYD_LOG_FILE="/path/to/var/log/celeryd/app_name-celeryworker.log"
  14. #CELERYD_PID_FILE="/path/to/var/run/celeryd/app_name-celeryworker.pid"
  15. # Sets the verbosity of the celeryd logging.
  16. #CELERYD_LOG_LEVEL="INFO"
  17. # Define the loader that celeryd should use for loading in configs.
  18. #CELERY_LOADER=""
  19. # User and group information for directories
  20. #CELERYD_USER="celery"
  21. #CELERYD_GROUP="celery"
  22. # Default arguments to be passed into celeryd.
  23. #CELERYD_OPTS=""
  24. # e.g. add app option:
  25. #CELERYD="-A proj.tasks:app"
  26. # Set the task modules that you want to have celery load
  27. #CELERY_IMPORTS=("tasks", )