27d56ee87b
* Updated etesync/journal-manager to v0.5.2 * Updated Django to 2.0.5 - Updated documentation links - Changed syntax and imports of `urls.py` * Updated Django REST Framework to 3.8.2 * Updated DFR Nested Routers to 0.90.2
17 lines
405 B
Python
17 lines
405 B
Python
"""
|
|
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
|
|
https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/
|
|
"""
|
|
|
|
import os
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "etesync_server.settings")
|
|
|
|
application = get_wsgi_application()
|