File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -170,3 +170,5 @@ node_modules/
170170.ruff_cache /
171171.env-cdk
172172config.yaml
173+ stac-browser /
174+ .envrc
Original file line number Diff line number Diff line change 11module . 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 : [ ] ,
Original file line number Diff line number Diff 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 [
You can’t perform that action at this time.
0 commit comments