aboutsummaryrefslogtreecommitdiffstats
path: root/app/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/settings.py')
-rw-r--r--app/settings.py9
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()