- from core_shared import ServiceSettings
- class AuthServiceSettings(ServiceSettings):
- service_name: str = "auth-service"
- service_port: int = 8014
- demo_user_bootstrap_enabled: bool = True
- demo_user_username: str = "demo-user"
- demo_user_password: str = "demo-password"
- demo_user_display_name: str = "Demo User"
- demo_user_email: str = "demo@example.com"
- permission_cache_ttl_seconds: int = 60
|