diff options
-rw-r--r-- | settings.py.example | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/settings.py.example b/settings.py.example index bbe100b..9b3235b 100644 --- a/settings.py.example +++ b/settings.py.example @@ -88,6 +88,15 @@ DATABASES = { }, } +# celery +import djcelery +djcelery.setup_loader() +BROKER_HOST = "localhost" +BROKER_PORT = 5672 +BROKER_USER = "guest" +BROKER_PASSWORD = "guest" +BROKER_VHOST = "/" + # Local time zone for this installation. Choices can be found here: # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE # although not all variations may be possible on all operating systems. @@ -177,6 +186,7 @@ INSTALLED_APPS = ( 'django.contrib.sites', 'django.contrib.gis', 'django.contrib.staticfiles', + 'djcelery', 'south', 'chimere', # activate it if you want to use migration scripts |