celeryd.sysconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. # Path to the celeryd multi (might be in a virtualenv)
  11. #CELERYD_MULTI="$BIN_PATH/bin/celeryd-multi"
  12. # Passed into celeryd multi
  13. #CELERYD="-m celery.bin.celeryd_detach"
  14. # OR add -b option is set to your broker URL as necessary
  15. #CELERYD="-m celery.bin.celeryd_detach -b $amqp_url"
  16. # How to call "manage.py celeryctl"
  17. #CELERYCTL="$ENV_PYTHON $CELERYD_CHDIR/manage.py celeryctl"
  18. # Log and PID files
  19. #CELERYD_LOG_FILE="/path/to/var/log/celeryd/app_name-celeryworker.log"
  20. #CELERYD_PID_FILE="/path/to/var/run/celeryd/app_name-celeryworker.pid"
  21. # Sets the verbosity of the celeryd logging.
  22. #CELERYD_LOG_LEVEL="INFO"
  23. # Define the loader that celeryd should use for loading in configs.
  24. #CELERY_LOADER=""
  25. # User and group information for directories
  26. #CELERYD_USER="celery"
  27. #CELERYD_GROUP="celery"
  28. # Default arguments to be passed into celeryd.
  29. #CELERYD_OPTS=""
  30. # Set the task modules that you want to have celery load
  31. #CELERY_IMPORTS=("tasks", )