From adca27b8e26b9ee63912ab79c480d7dd8d0bb47c Mon Sep 17 00:00:00 2001 From: J08nY Date: Wed, 16 Aug 2017 17:13:59 +0200 Subject: Split example_project into single_project and suite_project. --- single_project/wsgi.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 single_project/wsgi.py (limited to 'single_project/wsgi.py') diff --git a/single_project/wsgi.py b/single_project/wsgi.py new file mode 100644 index 0000000..f53aa36 --- /dev/null +++ b/single_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 . + +""" +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() -- cgit v1.2.3-70-g09d2