Skip to content

Commit

Permalink
move properties
Browse files Browse the repository at this point in the history
  • Loading branch information
rzlim08 committed Oct 11, 2024
1 parent 7263900 commit b3ae6e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platformics/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ class Settings(BaseSettings):
DB_MAX_OVERFLOW: int = 0
DB_ECHO: bool = False
DEBUG: bool = False
BOTO_ENDPOINT_URL: typing.Optional[str] = None
AWS_REGION: str

# Pydantic automatically tries to load settings with matching names from
# the environment if available.
Expand All @@ -33,6 +31,8 @@ class Settings(BaseSettings):
PLATFORMICS_DATABASE_USER: str
PLATFORMICS_DATABASE_PASSWORD: str
PLATFORMICS_DATABASE_NAME: str
BOTO_ENDPOINT_URL: typing.Optional[str] = None
AWS_REGION: str

############################################################################
# Computed properties
Expand Down

0 comments on commit b3ae6e2

Please sign in to comment.