From c7588583927e004e10599912f6d7b76413d52730 Mon Sep 17 00:00:00 2001 From: Tyler Kennedy Date: Sat, 26 Nov 2022 12:04:04 -0500 Subject: Simplified settings Migrated settings to typed pydantic settings--- takahe/asgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'takahe/asgi.py') diff --git a/takahe/asgi.py b/takahe/asgi.py index 3424b23..99a9cfb 100644 --- a/takahe/asgi.py +++ b/takahe/asgi.py @@ -11,6 +11,6 @@ import os from django.core.asgi import get_asgi_application -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "takahe.settings.production") +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "takahe.settings") application = get_asgi_application() -- cgit v1.2.3