We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ec16a9 commit 9926231Copy full SHA for 9926231
1 file changed
hea/settings/base.py
@@ -363,7 +363,10 @@
363
364
365
########## DATA EXPLORER CONFIGURATION
366
-EXPLORER_CLOUDFRONT_URL = env.str("EXPLORER_CLOUDFRONT_URL")
+# setting a default, so app startup doesn't fail when this variable isn't set
367
+# in services that don't use it.
368
+# It only needs an actually working upstream when the ProxyView view is invoked.
369
+EXPLORER_CLOUDFRONT_URL = env.str("EXPLORER_CLOUDFRONT_URL", default="http://localhost:3000")
370
########## End DATA EXPLORER CONFIGURATION
371
372
# Allow GDAL/GEOS library path overrides to be set in the environment, for MacOS.
0 commit comments