Spaces:
Sleeping
Sleeping
from pydantic_settings import BaseSettings | |
class Settings(BaseSettings): | |
PROJECT_NAME: str = "JunsenAI Backend" | |
API_V1_STR: str = "/api" | |
FIREBASE_CREDENTIALS: str = "serviceAccountKey.json" | |
STORAGE_PATH: str = "media_storage" | |
STORAGE_BUCKET: str = "STORAGE_BUCKET" | |
class Config: | |
case_sensitive = True | |
settings = Settings() |