From e9878d4aab20b0d2f89506dcab377c8c2efefdea Mon Sep 17 00:00:00 2001 From: Stepan Date: Sat, 13 Dec 2025 16:15:27 +0100 Subject: [PATCH] gunicorn --- project/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/wsgi.py b/project/wsgi.py index e896f59..39df919 100644 --- a/project/wsgi.py +++ b/project/wsgi.py @@ -11,6 +11,6 @@ import os from django.core.wsgi import get_wsgi_application -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'project.settings') +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'project.settings.prod') application = get_wsgi_application()