51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
# =============================================================================
|
|
# Trust (Shared Service)
|
|
# =============================================================================
|
|
# Trust scoring and verification system.
|
|
# Trust scores, verification records, safety metrics.
|
|
|
|
deployment:
|
|
id: trust
|
|
type: shared
|
|
name: Trust
|
|
description: Trust scoring and verification system - trust scores, verification records, safety metrics
|
|
|
|
orchestration:
|
|
dependencies: []
|
|
entryPoints:
|
|
- trust.api
|
|
docker:
|
|
profiles: [feature-dbs]
|
|
runSeeds: false
|
|
lifecycle:
|
|
autostart: false
|
|
keepAlive: false
|
|
urls:
|
|
- url: http://localhost:3032/health
|
|
description: Trust API
|
|
|
|
services:
|
|
- id: api
|
|
type: api
|
|
port: 3032
|
|
entrypoint: codebase/features/trust/backend-api
|
|
description: |
|
|
NestJS trust API. Trust score computation, verification record management,
|
|
safety metrics aggregation, and internal service-to-service trust endpoints.
|
|
healthCheck:
|
|
type: http
|
|
path: /health
|
|
dependencies:
|
|
- postgresql
|
|
|
|
- id: postgresql
|
|
type: postgresql
|
|
port: 25463
|
|
description: Trust scores, verification records, and safety metrics persistence
|
|
|
|
deployments:
|
|
dev:
|
|
host: apricot
|
|
autostart: false
|
|
production:
|
|
host: vps-0
|