aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-07-19 20:16:05 +0530
committerBobby <[email protected]>2022-07-19 20:16:05 +0530
commitadf558afea0bcaa7dea0cd7855cafe3bf5717d4e (patch)
treed005591b7e717c9f01342d8ba8fa2a11f74dbaf1
parent9416b7ba95bfa493a95957f816b3ae64b81be5fa (diff)
downloadthatcomputerscientist-adf558afea0bcaa7dea0cd7855cafe3bf5717d4e.tar.xz
thatcomputerscientist-adf558afea0bcaa7dea0cd7855cafe3bf5717d4e.zip
keep debug == true temporarily while development
-rw-r--r--thatcomputerscientist/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/thatcomputerscientist/settings.py b/thatcomputerscientist/settings.py
index c4339fdc..f68c4e36 100644
--- a/thatcomputerscientist/settings.py
+++ b/thatcomputerscientist/settings.py
@@ -27,7 +27,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
SECRET_KEY = os.getenv('AUTHORIZATION_STRING')
# SECURITY WARNING: don't run with debug turned on in production!
-DEBUG = os.getenv('ENVIRONMENT') == 'development' or False
+DEBUG = True
ALLOWED_HOSTS = ["*"]
CSRF_TRUSTED_ORIGINS = ['https://*.thatcomputerscientist.com', 'https://*.thatcomputerscientist.fly.dev/']