Skip to content

Commit

Permalink
set default s3 host/bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed May 24, 2024
1 parent 81d1c39 commit be57246
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bioimageio_collection_backoffice/_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ class Settings(BaseSettings, extra="ignore"):
run_url: Optional[str] = None
"""url to logs of the current CI run"""

s3_host: str
s3_bucket: str
s3_host: str = "uk1s3.embassy.ebi.ac.uk"
s3_bucket: str = "public-datasets"
s3_folder: str = f"testing.bioimage.io/{getpass.getuser()}/instance"
s3_pytest_folder: str = f"testing.bioimage.io/{getpass.getuser()}/pytest"
s3_sandbox_folder: str = "sandbox.bioimage.io"
Expand All @@ -50,5 +50,5 @@ class Settings(BaseSettings, extra="ignore"):
github_pat: SecretStr = SecretStr("")


settings = Settings() # pyright: ignore[reportCallIssue]
settings = Settings()
logger.info("settings: {}", settings)

0 comments on commit be57246

Please sign in to comment.