15 lines
345 B
Python
15 lines
345 B
Python
|
|
from pydantic_settings import BaseSettings
|
||
|
|
|
||
|
|
|
||
|
|
class Settings(BaseSettings):
|
||
|
|
APP_NAME: str = "KKS Badge Management System"
|
||
|
|
DATABASE_URL: str = "sqlite+aiosqlite:///./badge_admin.db"
|
||
|
|
TCP_HOST: str = "0.0.0.0"
|
||
|
|
TCP_PORT: int = 5000
|
||
|
|
API_HOST: str = "0.0.0.0"
|
||
|
|
API_PORT: int = 8088
|
||
|
|
DEBUG: bool = True
|
||
|
|
|
||
|
|
|
||
|
|
settings = Settings()
|