Skip to content

Commit

Permalink
Removing default topics; improve documentation (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredliporace committed Feb 5, 2024
1 parent 79d8d5a commit 72f7661
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Empty static stac catalogs and collections are created when the stack is deploye
In order to overcome that you may set `STACK_DEPLOY_STATIC_CATALOG_STRUCTURE` to `false` in `.env` and manually copy the static files. From a prompt in the `stack/static_catalog_structure` dir:

```bash
$ aws s3 cp ./ s3://cbers-stac-1-0-0 --recursive
$ aws s3 cp ./ s3://[REPLACE_WITH_STAC_BUCKET_NAME] --recursive
```

Replace `cbers-stac-1-0-0` with the given stac bucket name. The collections initially do not contain the links to the children, this is updated when a new scene is inserted at any level.
Expand Down
6 changes: 1 addition & 5 deletions stack/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@ class StackSettings(pydantic.BaseSettings): # pylint: disable=too-few-public-me
es_volume_size: int
es_data_nodes: int

topics: Optional[List[str]] = [
"arn:aws:sns:us-east-1:599544552497:NewCB4Quicklook",
"arn:aws:sns:us-east-1:599544552497:NewCB4AQuicklook",
"arn:aws:sns:us-east-1:599544552497:NewAMQuicklook",
]
topics: List[str]

deploy_static_catalog_structure: Optional[bool] = True

Expand Down

0 comments on commit 72f7661

Please sign in to comment.