import os from dotenv import load_dotenv load_dotenv() class Settings: FIREBASE_CREDENTIALS_JSON: str = os.getenv("FIREBASE_CREDENTIALS_JSON", "") # Add other settings here if needed settings = Settings()