Adds website theme serialization system

This commit is contained in:
Your Name
2026-07-06 06:52:18 +00:00
parent b932d65658
commit 8cd54459ec
29 changed files with 418 additions and 4 deletions
+4
View File
@@ -32,6 +32,10 @@ class Settings(BaseSettings):
MOBILE_BUILD_ANDROID_ARTIFACT_GLOB: str = "~/mobile_app/build/app/outputs/bundle/release/*.aab"
MOBILE_BUILD_IOS_ARTIFACT_GLOB: str = "~/mobile_app/build/ios/ipa/*.ipa"
# Theme export
WEBSITE_URL: str = "https://kmountainflower.org"
THEME_JSON_PATH: str = "/app/theme.json"
model_config = {"env_prefix": "KMTN_"}