import os from pydantic_settings import BaseSettings class AppSettings(): NAME: str = "content" APP_NAME:str = NAME FREELEAPS_WWW_AS_AZURE_CLIENT_SECRET: str = "" CENTRAL_STORAGE_WEBAPI_URL_BASE:str ="" LOG_BASE_PATH : str = "./log" BACKEND_LOG_FILE_NAME: str = APP_NAME APPLICATION_ACTIVITY_LOG: str = APP_NAME + "-application-activity" class Config: env_file = ".content.env" env_file_encoding = "utf-8" app_settings = AppSettings()