2017-11-02 22:20:55 +00:00
|
|
|
"""
|
|
|
|
WSGI config for etesync_server project.
|
|
|
|
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
|
|
|
|
|
|
For more information on this file, see
|
2018-05-01 15:46:50 +00:00
|
|
|
https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/
|
2017-11-02 22:20:55 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "etesync_server.settings")
|
|
|
|
|
|
|
|
application = get_wsgi_application()
|