summaryrefslogtreecommitdiffstats
path: root/takahe/wsgi.py
diff options
context:
space:
mode:
authorTyler Kennedy2022-11-26 12:04:04 -0500
committerGitHub2022-11-26 10:04:04 -0700
commitc7588583927e004e10599912f6d7b76413d52730 (patch)
tree6c6ac1d2a3cc52c5b1e170db3ab78f2fab31022d /takahe/wsgi.py
parentd60ba9a0515aed0b8235a7738a5fecd8fd78f859 (diff)
downloadtakahe-c7588583927e004e10599912f6d7b76413d52730.tar.gz
takahe-c7588583927e004e10599912f6d7b76413d52730.tar.bz2
takahe-c7588583927e004e10599912f6d7b76413d52730.zip
Simplified settings
Migrated settings to typed pydantic settings
Diffstat (limited to 'takahe/wsgi.py')
-rw-r--r--takahe/wsgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/takahe/wsgi.py b/takahe/wsgi.py
index c8ad0a0..05ae06f 100644
--- a/takahe/wsgi.py
+++ b/takahe/wsgi.py
@@ -11,6 +11,6 @@ import os
from django.core.wsgi import get_wsgi_application
-os.environ.setdefault("DJANGO_SETTINGS_MODULE", "takahe.settings.production")
+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "takahe.settings")
application = get_wsgi_application()