diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-03-29 16:55:17 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-03-29 16:55:17 +0200 |
commit | 953310b7e18bdb012dae2fcc0184bc63f1c30c0c (patch) | |
tree | 98c7b6d2460060dd1a2a71c3b303e221d4fa258c /example_project | |
parent | a46efae7bf7a9a0f8a2ccaffdfe0d18ffcb2a0d2 (diff) | |
download | Chimère-953310b7e18bdb012dae2fcc0184bc63f1c30c0c.tar.bz2 Chimère-953310b7e18bdb012dae2fcc0184bc63f1c30c0c.zip |
Work on OSM export - simplify KML import
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py.example | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/example_project/settings.py.example b/example_project/settings.py.example index dc49768..d9afa6e 100644 --- a/example_project/settings.py.example +++ b/example_project/settings.py.example @@ -96,11 +96,12 @@ DATABASES = { # celery import djcelery djcelery.setup_loader() -BROKER_HOST = "localhost" -BROKER_PORT = 5672 -BROKER_USER = "guest" -BROKER_PASSWORD = "guest" -BROKER_VHOST = "/" +BROKER_URL = 'django://' +#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 @@ -191,6 +192,7 @@ INSTALLED_APPS = ( 'django.contrib.sites', 'django.contrib.gis', 'django.contrib.staticfiles', + 'kombu.transport.django', 'djcelery', 'south', 'chimere', |