From 22377c6772db3aa623cfeda94da530f6ce42113f Mon Sep 17 00:00:00 2001 From: Lilith Date: Tue, 20 Jan 2026 06:28:09 -0800 Subject: [PATCH] =?UTF-8?q?chore(src):=20=F0=9F=94=A7=20Update=20TypeScrip?= =?UTF-8?q?t=20entry=20point=20(src/main.ts)=20and=20YAML=20service=20conf?= =?UTF-8?q?iguration=20(services.yaml)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- features/profile/backend-api/src/main.ts | 2 +- features/seo/services.yaml | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/features/profile/backend-api/src/main.ts b/features/profile/backend-api/src/main.ts index 59563e7f9..bff2578a0 100644 --- a/features/profile/backend-api/src/main.ts +++ b/features/profile/backend-api/src/main.ts @@ -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}`); }, diff --git a/features/seo/services.yaml b/features/seo/services.yaml index 05ad64d9a..ce34a3ffc 100755 --- a/features/seo/services.yaml +++ b/features/seo/services.yaml @@ -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: