BackendJunsen / app /core /config.py
2nzi's picture
upload
d4d562c verified
raw
history blame
370 Bytes
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()