13 lines
296 B
Python
13 lines
296 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
database_url: str = "postgresql+asyncpg://pastebin:pastebin@db:5432/pastebin"
|
|
admin_password: str = "change-me"
|
|
max_paste_length: int = 100_000
|
|
|
|
model_config = {"env_file": ".env"}
|
|
|
|
|
|
settings = Settings()
|