From 3d918bf7a4b734e5334c082821a1c53399149aed Mon Sep 17 00:00:00 2001 From: Dominic Date: Sun, 2 Nov 2025 20:23:40 -0500 Subject: [PATCH] wsgi --- cwr/wsgi.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cwr/wsgi.py b/cwr/wsgi.py index 67ac14f..f33d104 100644 --- a/cwr/wsgi.py +++ b/cwr/wsgi.py @@ -1,16 +1,16 @@ """ -WSGI config for cwr project. +WSGI config for korabo 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.2/howto/deployment/wsgi/ +https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/ """ import os from django.core.wsgi import get_wsgi_application -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'cwr.settings') +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'wsgi.settings') application = get_wsgi_application()