39 lines
865 B
YAML
39 lines
865 B
YAML
name: "@companion"
|
|
description: "AI Companion Platform — orchestration API, PWA frontend, voice pipeline"
|
|
category: product
|
|
|
|
services:
|
|
companion-api:
|
|
description: "NestJS orchestration API — session, chat SSE, voice WS"
|
|
type: nestjs
|
|
ports:
|
|
http: 3850
|
|
dependencies:
|
|
- companion-postgres
|
|
- companion-redis
|
|
|
|
companion-web:
|
|
description: "React PWA — mobile-first AI companion frontend"
|
|
type: frontend
|
|
ports:
|
|
http: 5850
|
|
dependencies:
|
|
- companion-api
|
|
|
|
companion-postgres:
|
|
description: "PostgreSQL — conversation session and message storage"
|
|
type: postgres
|
|
ports:
|
|
db: 26397
|
|
|
|
companion-redis:
|
|
description: "Redis — session cache and pub/sub"
|
|
type: redis
|
|
ports:
|
|
db: 26396
|
|
|
|
platforms:
|
|
apricot:
|
|
os: linux
|
|
host: 10.0.0.13
|
|
environment: development
|