From: Seth Woodworth Date: Tue, 24 Sep 2013 13:51:01 +0000 (+0000) Subject: add djcelery to the wsgi interface X-Git-Tag: release-20150131~386^2~101 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b5eb1527f3363121487f4f04d901fd50bb17e733;p=oweals%2Fkarmaworld.git add djcelery to the wsgi interface --- diff --git a/karmaworld/wsgi.py b/karmaworld/wsgi.py index 8e89ca8..b29ded5 100644 --- a/karmaworld/wsgi.py +++ b/karmaworld/wsgi.py @@ -15,6 +15,9 @@ framework. """ import os +import djcelery +djcelery.setup_loader() + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "karmaworld.settings.prod") # This application object is used by any WSGI server configured to use this