Skip to content

Commit 844fb64

Browse files
authored
fix stac browser domain settings (#32)
1 parent f39cf23 commit 844fb64

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -170,3 +170,5 @@ node_modules/
170170
.ruff_cache/
171171
.env-cdk
172172
config.yaml
173+
stac-browser/
174+
.envrc

browser_config.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module.exports = {
2-
catalogUrl: "https://stac.eoapi.dev",
32
catalogTitle: "eoAPI STAC Browser",
43
allowExternalAccess: true, // Must be true if catalogUrl is not given
54
allowedDomains: [],

infrastructure/config.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,14 @@ def validate_model(self) -> Self:
153153
and therefore `nat_gateway_count` has to be > 0."""
154154
)
155155

156-
# if (
157-
# self.stac_browser_version is not None
158-
# and self.stac_api_custom_domain is None
159-
# ):
160-
# raise ValueError(
161-
# """If a STAC browser version is provided,
162-
# a custom domain must be provided for the STAC API"""
163-
# )
156+
if (
157+
self.stac_browser_version is not None
158+
and self.stac_api_custom_domain is None
159+
):
160+
raise ValueError(
161+
"""If a STAC browser version is provided,
162+
a custom domain must be provided for the STAC API"""
163+
)
164164

165165
if self.acm_certificate_arn is None and any(
166166
[

0 commit comments

Comments
 (0)