diff options
| author | Bobby <[email protected]> | 2022-12-29 04:32:26 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-12-29 04:32:26 -0500 |
| commit | e721e48a9d39be803952a46c95723f14ff19e71e (patch) | |
| tree | 131dcaea7847a68908bc11af568b93a4c3abb04d | |
| parent | ad7dccdc12b4a7dfca8d1b7225e985486e01af08 (diff) | |
| download | thatcomputerscientist-e721e48a9d39be803952a46c95723f14ff19e71e.tar.xz thatcomputerscientist-e721e48a9d39be803952a46c95723f14ff19e71e.zip | |
Starting fixing post issue
| -rw-r--r-- | thatcomputerscientist/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thatcomputerscientist/settings.py b/thatcomputerscientist/settings.py index 7c7e5623..40ba8040 100644 --- a/thatcomputerscientist/settings.py +++ b/thatcomputerscientist/settings.py @@ -28,7 +28,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 = True if os.getenv('ENVIRONMENT') == 'development' else False +DEBUG = True if os.getenv('ENVIRONMENT') == 'development' else True ALLOWED_HOSTS = ["*"] CSRF_TRUSTED_ORIGINS = ['https://*.thatcomputerscientist.com', 'http://*.thatcomputerscientist.com'] |
