This commit is contained in:
jose-rZM
2025-12-15 11:42:17 +01:00
commit c3f7af7379
33 changed files with 5004 additions and 0 deletions

13
backend/app/settings.py Normal file
View File

@@ -0,0 +1,13 @@
import os
from dataclasses import dataclass
@dataclass(frozen=True)
class RuntimeConfig:
app_version: str = os.getenv("APP_VERSION", "dev")
git_commit: str = os.getenv("GIT_COMMIT", "local")
build_number: str = os.getenv("BUILD_NUMBER", "-")
commit_author: str = os.getenv("COMMIT_AUTHOR", "local")
settings = RuntimeConfig()