Skip to content

Commit

Permalink
fix: fix base api url
Browse files Browse the repository at this point in the history
  • Loading branch information
botanical committed Aug 22, 2024
1 parent 06b1372 commit f0e0884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
db_secret_name = database.pgstac.secret.secret_name
db_security_group = database.db_security_group

base_api_url = f"https://{veda_app_settings.stage_name()}.{veda_app_settings.veda_custom_host}".strip(
base_api_url = f"https://{veda_app_settings.veda_custom_host}".strip(
"/"
)
stac_api_url = f"{base_api_url}{veda_app_settings.veda_stac_root_path}/"
Expand Down

0 comments on commit f0e0884

Please sign in to comment.