From 12d1f9fd979c11b9e3a3a89b1595b07569b88f79 Mon Sep 17 00:00:00 2001 From: workmai Date: Thu, 4 Oct 2018 12:14:39 -0600 Subject: Initial commit of the coding assignment base project --- coding_assignment_project/wsgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 coding_assignment_project/wsgi.py (limited to 'coding_assignment_project/wsgi.py') diff --git a/coding_assignment_project/wsgi.py b/coding_assignment_project/wsgi.py new file mode 100644 index 0000000..3057f8d --- /dev/null +++ b/coding_assignment_project/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for coding_assignment_project 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/2.1/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'coding_assignment_project.settings') + +application = get_wsgi_application() -- cgit v1.1