Skip to content

Commit

Permalink
devilry_developer.settings.base: Include djcelery_email in INSTALLED_…
Browse files Browse the repository at this point in the history
…APPS.

This is the fix for #480 - we simply forgot to include it in the
migration guide.
  • Loading branch information
espenak committed Nov 12, 2013
1 parent feac5c9 commit eea8919
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/devilry_developer/devilry_developer/settings/base.py
Expand Up @@ -44,7 +44,6 @@
'devilry.restful',
'devilry.simplified',


## For Trix development
#'trix',
#'trix_extjshelpers',
Expand Down Expand Up @@ -209,10 +208,14 @@
# Celery
##################################################################################
CELERY_ALWAYS_EAGER = True

## For testing celery
#CELERY_ALWAYS_EAGER = False
#CELERY_RESULT_BACKEND = 'djcelery.backends.database:DatabaseBackend'
#BROKER_URL = 'django://'
#INSTALLED_APPS.append('kombu.transport.django')
#INSTALLED_APPS += ['kombu.transport.django']

## For testing django-celery-email
#INSTALLED_APPS += ['djcelery_email']
#EMAIL_BACKEND = 'djcelery_email.backends.CeleryEmailBackend'
#CELERY_EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"

0 comments on commit eea8919

Please sign in to comment.