diff options
| author | 2024-08-01 21:29:55 +0100 | |
|---|---|---|
| committer | 2024-08-01 21:29:55 +0100 | |
| commit | f3cc0fac7c584b1de8b0e444ddca9e681961687f (patch) | |
| tree | f68b496fe3390506d50457eaf2aca1cf5f14769f /app/settings.py | |
Initial commit
Diffstat (limited to 'app/settings.py')
| -rw-r--r-- | app/settings.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/settings.py b/app/settings.py new file mode 100644 index 0000000..cca11aa --- /dev/null +++ b/app/settings.py @@ -0,0 +1,9 @@ +from pydantic_settings import BaseSettings + + +class _Settings(BaseSettings, env_file=".env", env_file_encoding="utf-8"): + debug: bool = False + git_sha: str = "development" + + +SETTINGS: _Settings = _Settings() |