Add wsgi file

refactor-builder
Eric Holscher 2014-07-31 15:24:08 -07:00
parent 30d147bccc
commit a813d79ccd
1 changed files with 13 additions and 0 deletions

13
readthedocs/wsgi.py Normal file
View File

@ -0,0 +1,13 @@
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
# This application object is used by any WSGI server configured to use this
# file. This includes Django's development server, if the WSGI_APPLICATION
# setting points here.
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
# Apply WSGI middleware here.
# from helloworld.wsgi import HelloWorldApplication
# application = HelloWorldApplication(application)