diff options
| author | Bobby <[email protected]> | 2022-09-10 19:03:24 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-10 19:03:24 -0400 |
| commit | 4eab4c8ea926c0f83192bdf59cc1612b42e7eb05 (patch) | |
| tree | 38cc2c020c80627c55374e117bf8bf377e73c36f | |
| parent | 39e3327dd2d98464a700b734401cdad5aedcc5ae (diff) | |
| download | thatcomputerscientist-4eab4c8ea926c0f83192bdf59cc1612b42e7eb05.tar.xz thatcomputerscientist-4eab4c8ea926c0f83192bdf59cc1612b42e7eb05.zip | |
Update settings.py
| -rw-r--r-- | thatcomputerscientist/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thatcomputerscientist/settings.py b/thatcomputerscientist/settings.py index 5b9a7b05..efd01fe3 100644 --- a/thatcomputerscientist/settings.py +++ b/thatcomputerscientist/settings.py @@ -27,8 +27,8 @@ 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 +# DEBUG = os.getenv('ENVIRONMENT') == 'development' or False +DEBUG = True ALLOWED_HOSTS = ["*"] CSRF_TRUSTED_ORIGINS = ['http://*.localhost', 'https://*.thatcomputerscientist.com', 'https://*.thatcomputerscientist.fly.dev/'] |
