16 lines
No EOL
283 B
Python
16 lines
No EOL
283 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
class Settings(BaseSettings):
|
|
|
|
app_name: str = "DagemarkBackend"
|
|
|
|
app_version: str = "0.1"
|
|
|
|
database_url: str = "sqlite:///data/app.db"
|
|
|
|
debug: bool = True
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
|
|
settings = Settings() |