8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-05 09:03:14 +00:00
re2o/re2o/wsgi.py
2016-06-30 01:39:31 +02:00

17 lines
385 B
Python

"""
WSGI config for re2o 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.8/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "re2o.settings")
application = get_wsgi_application()