Files
home-automation-backend/app/core/config.py

9 lines
149 B
Python

from pydantic_settings import BaseSettings
class Settings(BaseSettings):
PROJECT_NAME: str = "home-automation-backend"
settings = Settings()