File tree 3 files changed +10
-9
lines changed
3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -170,3 +170,5 @@ node_modules/
170
170
.ruff_cache /
171
171
.env-cdk
172
172
config.yaml
173
+ stac-browser /
174
+ .envrc
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- catalogUrl : "https://stac.eoapi.dev" ,
3
2
catalogTitle : "eoAPI STAC Browser" ,
4
3
allowExternalAccess : true , // Must be true if catalogUrl is not given
5
4
allowedDomains : [ ] ,
Original file line number Diff line number Diff line change @@ -153,14 +153,14 @@ def validate_model(self) -> Self:
153
153
and therefore `nat_gateway_count` has to be > 0."""
154
154
)
155
155
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
+ )
164
164
165
165
if self .acm_certificate_arn is None and any (
166
166
[
You can’t perform that action at this time.
0 commit comments