Add missing wsgi.py in odsreg
Add wsgi.py to the odsreg module. Change-Id: If4a3428963b6d9e7369620e1dca063a892966a05
This commit is contained in:
parent
6b962fa3e2
commit
483042cd32
16
odsreg/wsgi.py
Normal file
16
odsreg/wsgi.py
Normal 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()
|
Loading…
x
Reference in New Issue
Block a user