chathur_api / api /core /config.py
VJnCode's picture
Deploy FastAPI Docker app to HF Spaces
f3ca15e
raw
history blame contribute delete
215 Bytes
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()