mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2026-01-26 00:52:07 +00:00
11 lines
231 B
Python
11 lines
231 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
class Settings(BaseSettings):
|
|
DATABASE_URL: str
|
|
GPX_STORAGE_PATH: str
|
|
AI_MODEL: str = "openrouter/auto"
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
|
|
settings = Settings() |