platform-codebase/features/sso/services.yaml
Lilith 28b9a172c5 feat(sso): Add OAuth/GitHub/SAML SSO provider configurations in services.yaml
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-25 16:00:28 -08:00

57 lines
1.3 KiB
YAML

# =============================================================================
# SSO Feature Services
# =============================================================================
# Centralized authentication for all platform services.
feature:
id: sso
name: SSO
description: Single sign-on - authentication, session management, MFA, OAuth flows
owner: platform-core
ports:
backend-api: 4001
postgres: 25440
redis: 26386
services:
- id: backend-api
name: SSO API
type: backend
port: 4001
entrypoint: codebase/features/sso/backend-api
startCommand: bun dev
description: Authentication, session management, MFA, OAuth flows
healthCheck:
type: http
path: /health
dependencies:
- sso.postgres
- sso.redis
- id: postgres
name: SSO PostgreSQL
type: postgres
port: 25440
description: Users, sessions, MFA tokens
docker:
container: lilith-sso-postgres
healthCheck:
type: tcp
critical: true
- id: redis
name: SSO Redis
type: redis
port: 26386
description: Session cache, MFA tokens, rate limiting
docker:
container: lilith-sso-redis
deployments:
dev:
host: apricot
autostart: true
production:
host: vps-0
domain: sso.atlilith.com