2016-08-10 20:23:17 +00:00
|
|
|
"""
|
|
|
|
WSGI config for webodm project.
|
|
|
|
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
|
|
|
|
|
|
For more information on this file, see
|
|
|
|
https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
2017-05-19 20:15:26 +00:00
|
|
|
from multiprocessing import Value
|
2016-08-10 20:23:17 +00:00
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "webodm.settings")
|
|
|
|
|
|
|
|
application = get_wsgi_application()
|
2017-05-19 20:15:26 +00:00
|
|
|
|
|
|
|
booted = Value('b', False)
|