From b6e0df52cb03a55a446665787714e254c71a981e Mon Sep 17 00:00:00 2001 From: ethanandrews Date: Tue, 23 Jan 2024 12:01:38 -0500 Subject: [PATCH] check debug in prod --- .DS_Store | Bin 6148 -> 6148 bytes paleo-hurricane-map/.env | 2 +- paleo-hurricane-map/.gitignore | 2 ++ .../config/settings/production.py | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.DS_Store b/.DS_Store index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..9103e5b2468b778341e573c49f9a6b0973002ede 100644 GIT binary patch delta 145 zcmZoMXfc=|&e%3FQEZ}~q9`K+0|O8XFfimZ=rUw5lrj`C6irN2pKKt)Vl2#1z>vt0 z!;p$B$&ksA3>3`+is~}t0$BxR!9{sF`FZIeqc$eGvV-()=H}qxU~Jo%_?>w&zlfqJ X6HrnCh!cPqWaj}OX4vc~vY#0Mx8EJ0 delta 67 zcmZoMXfc=|&Zs)EP;8=}A_oHyFfuR*Y`kd3KJh`-W_At%4o20D7r!%4<`+@q1WGX^ TfYeMj;Zfe4AhLvcVgm~RJFF0g diff --git a/paleo-hurricane-map/.env b/paleo-hurricane-map/.env index 89bbcfe..163d48d 100644 --- a/paleo-hurricane-map/.env +++ b/paleo-hurricane-map/.env @@ -1 +1 @@ -VITE_API_HOST=https://paleohurdat.whoi.edu/services \ No newline at end of file +VITE_API_HOST=https://paleohurdat.whoi.edu \ No newline at end of file diff --git a/paleo-hurricane-map/.gitignore b/paleo-hurricane-map/.gitignore index a547bf3..bdd4128 100644 --- a/paleo-hurricane-map/.gitignore +++ b/paleo-hurricane-map/.gitignore @@ -22,3 +22,5 @@ dist-ssr *.njsproj *.sln *.sw? +.env +.env.development diff --git a/paleo_hurricane_api/config/settings/production.py b/paleo_hurricane_api/config/settings/production.py index c50217e..17f011e 100644 --- a/paleo_hurricane_api/config/settings/production.py +++ b/paleo_hurricane_api/config/settings/production.py @@ -21,7 +21,7 @@ METADATA_URI = os.environ["ECS_CONTAINER_METADATA_URI"] container_metadata = requests.get(METADATA_URI).json() ALLOWED_HOSTS.append(container_metadata["Networks"][0]["IPv4Addresses"][0]) -DEBUG = False +DEBUG = True # DATABASES # ------------------------------------------------------------------------------