Skip to content

Commit

Permalink
Added docker default secrets directory to pydantic settings
Browse files Browse the repository at this point in the history
  • Loading branch information
aljora committed May 15, 2024
1 parent c227519 commit bc1d1b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mealie/core/settings/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def OIDC_READY(self) -> bool:
# Testing Config

TESTING: bool = False
model_config = SettingsConfigDict(arbitrary_types_allowed=True, extra="allow")
model_config = SettingsConfigDict(arbitrary_types_allowed=True, extra="allow", secrets_dir="/run/secrets")


def app_settings_constructor(data_dir: Path, production: bool, env_file: Path, env_encoding="utf-8") -> AppSettings:
Expand Down

0 comments on commit bc1d1b9

Please sign in to comment.