Skip to content

Instantly share code, notes, and snippets.

@renyi
Created October 11, 2012 04:05
Show Gist options
  • Select an option

  • Save renyi/3870094 to your computer and use it in GitHub Desktop.

Select an option

Save renyi/3870094 to your computer and use it in GitHub Desktop.
Django/Celery/seacucumber settings
try:
import djcelery
djcelery.setup_loader()
INSTALLED_APPS += [
"djcelery",
"seacucumber",
]
BROKER_HOST = "localhost"
BROKER_PORT = 5672
BROKER_USER = ""
BROKER_PASSWORD = ""
CELERY_RESULT_BACKEND = "amqp"
except ImportError:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment