diff options
| author | Carlos Konstanski <carlos.konstanski@verizonwireless.com> | 2020-04-30 08:34:07 -0600 |
|---|---|---|
| committer | Carlos Konstanski <carlos.konstanski@verizonwireless.com> | 2020-04-30 08:34:07 -0600 |
| commit | 08203a6cb7889e55975d1568e9f4a9187fad8306 (patch) | |
| tree | 49ca07c8c2a44b213c0bfe23303bfbbda41d965a /src/far_edge_ops_api/wsgi.py | |
initial commit
Diffstat (limited to 'src/far_edge_ops_api/wsgi.py')
| -rw-r--r-- | src/far_edge_ops_api/wsgi.py | 16 |
1 files changed, 16 insertions, 0 deletions
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() |
