51 lines
1.1 KiB
YAML
Executable file
51 lines
1.1 KiB
YAML
Executable file
# =============================================================================
|
|
# Profile
|
|
# =============================================================================
|
|
# User profile management and verification
|
|
|
|
feature:
|
|
id: profile
|
|
name: Profile
|
|
description: User profiles, preferences, and verification
|
|
owner: platform-core
|
|
|
|
ports:
|
|
api: 3110
|
|
frontend-dev: 5175
|
|
postgresql: 5442
|
|
|
|
services:
|
|
- id: api
|
|
name: Profile API
|
|
type: api
|
|
port: 3110
|
|
entrypoint: codebase/features/profile/backend-api
|
|
description: Profile management API
|
|
healthCheck:
|
|
type: http
|
|
path: /health
|
|
dependencies:
|
|
- profile.postgresql
|
|
- sso.api
|
|
|
|
- id: frontend-dev
|
|
name: Profile Frontend Dev
|
|
type: frontend
|
|
port: 5175
|
|
entrypoint: codebase/features/profile/frontend
|
|
description: Vite dev server
|
|
|
|
- id: postgresql
|
|
name: Profile Database
|
|
type: postgresql
|
|
port: 5442
|
|
description: User profiles, preferences, verification
|
|
|
|
deployments:
|
|
dev:
|
|
host: apricot
|
|
autostart: false
|
|
staging:
|
|
host: black
|
|
production:
|
|
host: vps-0
|