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: