From 20c9dba737113b683b3fe9fea18c5fe479407ada Mon Sep 17 00:00:00 2001 From: makefu Date: Tue, 20 Aug 2019 08:20:53 +0200 Subject: initial commit, everything works now(tm) --- yacos/wsgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 yacos/wsgi.py (limited to 'yacos/wsgi.py') diff --git a/yacos/wsgi.py b/yacos/wsgi.py new file mode 100644 index 0000000..522aa82 --- /dev/null +++ b/yacos/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for yacos 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.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'yacos.settings') + +application = get_wsgi_application() -- cgit v1.2.3