settings.py 422 B

123456789101112
  1. from core_shared import ServiceSettings
  2. class AuthServiceSettings(ServiceSettings):
  3. service_name: str = "auth-service"
  4. service_port: int = 8014
  5. demo_user_bootstrap_enabled: bool = True
  6. demo_user_username: str = "demo-user"
  7. demo_user_password: str = "demo-password"
  8. demo_user_display_name: str = "Demo User"
  9. demo_user_email: str = "demo@example.com"
  10. permission_cache_ttl_seconds: int = 60