From 08203a6cb7889e55975d1568e9f4a9187fad8306 Mon Sep 17 00:00:00 2001 From: Carlos Konstanski Date: Thu, 30 Apr 2020 08:34:07 -0600 Subject: initial commit --- src/far_edge_ops_api/wsgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/far_edge_ops_api/wsgi.py (limited to 'src/far_edge_ops_api/wsgi.py') diff --git a/src/far_edge_ops_api/wsgi.py b/src/far_edge_ops_api/wsgi.py new file mode 100644 index 0000000..3b5d6a6 --- /dev/null +++ b/src/far_edge_ops_api/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for far_edge_ops_api 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/3.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'far_edge_ops_api.settings') + +application = get_wsgi_application() -- cgit v1.3