2014-10-08 13:44:29 +00:00
|
|
|
"""
|
|
|
|
WSGI config for binder project.
|
|
|
|
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
|
|
|
|
|
|
For more information on this file, see
|
2016-02-06 17:31:14 +00:00
|
|
|
https://docs.djangoproject.com/en/1.9/howto/deployment/wsgi/
|
2014-10-08 13:44:29 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "binder.settings")
|
|
|
|
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
application = get_wsgi_application()
|