From a188df3ae359ab770aac85d19d23739286ef6d41 Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Tue, 9 Jun 2026 22:53:50 +0200 Subject: Initial commit --- chat/wsgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 chat/wsgi.py (limited to 'chat/wsgi.py') diff --git a/chat/wsgi.py b/chat/wsgi.py new file mode 100644 index 0000000..cdfbb23 --- /dev/null +++ b/chat/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for chat 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/5.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'chat.settings') + +application = get_wsgi_application() -- cgit v1.2.3