File size: 215 Bytes
f3ca15e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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()