Skip to content

Commit

Permalink
fix(config): make support email optional (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
frgfm authored Jan 9, 2025
1 parent 45de7a7 commit ab5acdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Settings(BaseSettings):
VERSION: str = "0.2.0.dev0"
API_V1_STR: str = "/api/v1"
CORS_ORIGIN: str = "*"
SUPPORT_EMAIL: Union[str, None] = os.environ.get("SUPPORT_EMAIL")
SUPPORT_EMAIL: str = os.environ.get("SUPPORT_EMAIL", "[email protected]")
# Authentication
SUPERADMIN_LOGIN: str = os.environ["SUPERADMIN_LOGIN"]
SUPERADMIN_PWD: str = os.environ["SUPERADMIN_PWD"]
Expand Down

0 comments on commit ab5acdd

Please sign in to comment.