git commit -m "feat: improve wheel UI with gold pointer and center circle sync"
16 lines
371 B
Python
16 lines
371 B
Python
from pydantic import Field
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
DATABASE_URL: str = Field(..., alias="DATABASE_URL")
|
|
|
|
LOG_ENABLED: bool = Field(True, alias="LOG_ENABLED")
|
|
LOG_LEVEL: str = Field("INFO", alias="LOG_LEVEL")
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
populate_by_name = True
|
|
|
|
|
|
settings = Settings() |