20 lines
414 B
Python
Raw Normal View History

2025-12-04 10:04:21 +08:00
import logging
from pydantic import PostgresDsn, SecretStr
from app.core.settings.app import AppSettings
class TestAppSettings(AppSettings):
debug: bool = True
title: str = "Test FastAPI example application"
secret_key: SecretStr = SecretStr("test_secret")
database_url: PostgresDsn
max_connection_count: int = 5
min_connection_count: int = 5
logging_level: int = logging.DEBUG