11 lines
290 B
Python
11 lines
290 B
Python
from pydantic import HttpUrl
|
|
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
|
class Settings(BaseSettings):
|
|
app_title: str = "PepperPlus"
|
|
|
|
ui_url: str = "http://localhost:5173"
|
|
|
|
model_config = SettingsConfigDict(env_file=".env")
|
|
|
|
settings = Settings() |