diff options
author | hardythe1 | 2015-06-10 15:11:26 +0530 |
---|---|---|
committer | hardythe1 | 2015-06-10 15:11:26 +0530 |
commit | 468146479ca9c8fa0c1dffdb9a63d822dd3a8d33 (patch) | |
tree | 4b7aaf64a334e11db6a9f1446cfe30a66a4d3b31 /scipy2015/wsgi.py | |
download | SciPy2015-468146479ca9c8fa0c1dffdb9a63d822dd3a8d33.tar.gz SciPy2015-468146479ca9c8fa0c1dffdb9a63d822dd3a8d33.tar.bz2 SciPy2015-468146479ca9c8fa0c1dffdb9a63d822dd3a8d33.zip |
Add Files
Diffstat (limited to 'scipy2015/wsgi.py')
-rw-r--r-- | scipy2015/wsgi.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scipy2015/wsgi.py b/scipy2015/wsgi.py new file mode 100644 index 0000000..f969dac --- /dev/null +++ b/scipy2015/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for scipy2015 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", "scipy2015.settings") + +application = get_wsgi_application() |