Add missing wsgi.py in odsreg

Add wsgi.py to the odsreg module.

Change-Id: If4a3428963b6d9e7369620e1dca063a892966a05
This commit is contained in:
Thierry Carrez 2016-12-19 10:52:00 +01:00
parent 6b962fa3e2
commit 483042cd32
1 changed files with 16 additions and 0 deletions

16
odsreg/wsgi.py Normal file
View File

@ -0,0 +1,16 @@
"""
WSGI config for odsreg 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", "odsreg.settings")
application = get_wsgi_application()