git add .

git commit -m "feat: improve wheel UI with gold pointer and center circle sync"
This commit is contained in:
2026-05-30 13:16:11 +03:30
parent c4c4e92e05
commit 1618580439
27 changed files with 1158 additions and 140 deletions

View File

@@ -1,10 +1,16 @@
from pydantic import Field
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
DATABASE_URL: str
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()