chore(src): 🔧 Update TypeScript entry point (src/main.ts) and YAML service configuration (services.yaml)

This commit is contained in:
Lilith 2026-01-20 06:28:09 -08:00
parent 86446c96e1
commit 22377c6772
2 changed files with 5 additions and 4 deletions

View file

@ -12,7 +12,7 @@ async function main() {
serviceName: 'profile', // Auto-resolves port from ports.yaml (3110)
dependencies: {
feature: 'profile',
autoStart: false // Disabled when started by orchestrator to prevent nested startup loops,
autoStart: false, // Disabled when started by orchestrator to prevent nested startup loops
onProgress: (event) => {
console.log(`[${event.service}] ${event.phase}: ${event.message}`);
},

View file

@ -161,14 +161,15 @@ services:
startCommand: "source .venv/bin/activate && python -m uvicorn service.src.api.main:create_app --factory --host 0.0.0.0 --port ${PORT:-8183}"
description: RAG document retrieval for SEO cultural context
env:
# Use seo.redis (Redis Stack with RediSearch) instead of infrastructure.redis
# Use truth-validation Redis Stack (port 6384) - has RediSearch module
# TODO: Fix seo-redis to use redis-stack image instead of redis:alpine
RAG_REDIS__HOST: localhost
RAG_REDIS__PORT: "6383"
RAG_REDIS__PORT: "6384"
healthCheck:
type: http
path: /health
dependencies:
- seo.redis
- truth-validation.redis
deployments:
dev: