35 lines
841 B
YAML
Executable file
35 lines
841 B
YAML
Executable file
# =============================================================================
|
|
# Age Verification
|
|
# =============================================================================
|
|
# Age verification and identity checking
|
|
|
|
feature:
|
|
id: age-verification
|
|
name: Age Verification
|
|
description: Age verification and identity checking service
|
|
owner: platform-core
|
|
|
|
# No dedicated ports - integrated with SSO
|
|
ports: {}
|
|
|
|
services:
|
|
- id: worker
|
|
name: Age Verification Worker
|
|
type: worker
|
|
entrypoint: codebase/features/age-verification
|
|
description: Age verification processing
|
|
healthCheck:
|
|
type: process
|
|
name: age-verification
|
|
dependencies:
|
|
- sso.api
|
|
- infrastructure.postgresql
|
|
|
|
deployments:
|
|
dev:
|
|
host: apricot
|
|
autostart: false
|
|
staging:
|
|
host: black
|
|
production:
|
|
host: vps-0
|