Automated Action db2997cc83 Create FastAPI todo backend with SQLite
Generated with and Co-Authored by [BackendIM](https://backend.im)
2025-05-11 16:39:38 +00:00

13 lines
245 B
Python

from pydantic import BaseSettings
from typing import Optional
class Settings(BaseSettings):
API_V1_STR: str = "/api/v1"
PROJECT_NAME: str = "Todo Backend Service"
class Config:
env_file = ".env"
settings = Settings()