From 80f6190065d9b1b3052f6cc931f7d57196bf7a80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=8D?= <79096808+0321minji@users.noreply.github.com> Date: Sat, 20 Jul 2024 15:28:58 +0900 Subject: [PATCH] #59 fix : set deafulat setting module (#79) --- UpcyProject/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UpcyProject/wsgi.py b/UpcyProject/wsgi.py index 860877c..3194632 100644 --- a/UpcyProject/wsgi.py +++ b/UpcyProject/wsgi.py @@ -11,6 +11,6 @@ from django.core.wsgi import get_wsgi_application -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'UpcyProject.settings') +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'UpcyProject.settings.production') application = get_wsgi_application()