Files
fast_api_livetse/backend/config.py
Anahita-Mahmoudi ed82bf7f1f git add .
git commit -m "feat: improve wheel UI with gold pointer and center circle sync"
2026-05-30 13:29:48 +03:30

10 lines
164 B
Python

from pydantic_settings import BaseSettings
class Settings(BaseSettings):
DATABASE_URL: str
class Config:
env_file = ".env"
settings = Settings()