diff options
Diffstat (limited to 'thallium-backend/src/settings.py')
-rw-r--r-- | thallium-backend/src/settings.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/thallium-backend/src/settings.py b/thallium-backend/src/settings.py new file mode 100644 index 0000000..2f9f6c1 --- /dev/null +++ b/thallium-backend/src/settings.py @@ -0,0 +1,9 @@ +from pydantic_settings import BaseSettings + + +class _CONFIG(BaseSettings, env_file=".env", env_file_encoding="utf-8"): + debug: bool = False + git_sha: str = "development" + + +CONFIG = _CONFIG() |