diff options
| author | J08nY | 2017-08-08 18:45:26 +0200 |
|---|---|---|
| committer | J08nY | 2017-08-08 18:45:26 +0200 |
| commit | e71bd4a81d772c73b5673a4299107d4730458790 (patch) | |
| tree | 4b6b23b7a6b792f4de5419bc288331cfd197cb61 /example_project/wsgi.py | |
| parent | ac4dd1658142ad625658722c2ce7ae7156d37955 (diff) | |
| download | django-pgpmailman-e71bd4a81d772c73b5673a4299107d4730458790.tar.gz django-pgpmailman-e71bd4a81d772c73b5673a4299107d4730458790.tar.zst django-pgpmailman-e71bd4a81d772c73b5673a4299107d4730458790.zip | |
Diffstat (limited to 'example_project/wsgi.py')
| -rw-r--r-- | example_project/wsgi.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/example_project/wsgi.py b/example_project/wsgi.py new file mode 100644 index 0000000..f53aa36 --- /dev/null +++ b/example_project/wsgi.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2017 Jan Jancar +# +# This file is a part of the Django Mailman PGP plugin. +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along with +# this program. If not, see <http://www.gnu.org/licenses/>. + +""" +WSGI config for django_pgpmailman 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.11/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") + +application = get_wsgi_application() |
