2012-08-28 18:44:51 +02:00
|
|
|
"""
|
2013-10-04 19:27:01 +02:00
|
|
|
WSGI config for zulip project.
|
2012-08-28 18:44:51 +02:00
|
|
|
|
|
|
|
This module contains the WSGI application used by Django's development server
|
|
|
|
and any production WSGI deployments. It should expose a module-level variable
|
|
|
|
named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover
|
|
|
|
this application via the ``WSGI_APPLICATION`` setting.
|
|
|
|
|
|
|
|
Usually you will have the standard Django WSGI application here, but it also
|
|
|
|
might make sense to replace the whole Django WSGI application with a custom one
|
|
|
|
that later delegates to the Django one. For example, you could introduce WSGI
|
|
|
|
middleware here, or combine a Django application with an application of another
|
|
|
|
framework.
|
|
|
|
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
|
2013-08-06 22:51:47 +02:00
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "zproject.settings")
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2013-11-08 21:38:09 +01:00
|
|
|
# Because import_module does not correctly handle safe circular imports we
|
|
|
|
# need to import zerver.models first before the middleware tries to import it.
|
|
|
|
|
|
|
|
import zerver.models
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
# This application object is used by any WSGI server configured to use this
|
|
|
|
# file. This includes Django's development server, if the WSGI_APPLICATION
|
|
|
|
# setting points here.
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
application = get_wsgi_application()
|