From 590d3797c95aaf18c8943b22a2363f138db0b5aa Mon Sep 17 00:00:00 2001 From: Rene Fichtmueller Date: Sat, 25 Apr 2026 12:19:09 +0200 Subject: [PATCH] chore: update ecosystem.config.cjs with claude-bridge and fixed ollama URL - CLAUDE_BRIDGE_URL: http://localhost:3250 - CLAUDE_BRIDGE_ENABLED: true - OLLAMA_URL: http://192.168.178.213:11434 (direct IP instead of HTTPS tunnel) - LLM_PROVIDERS: claude,cerebras,groq,mistral,nvidia - Add free LLM API keys (empty, to be filled with actual keys) --- deploy/ecosystem.config.cjs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/deploy/ecosystem.config.cjs b/deploy/ecosystem.config.cjs index 9617f24..20e2124 100644 --- a/deploy/ecosystem.config.cjs +++ b/deploy/ecosystem.config.cjs @@ -19,10 +19,20 @@ module.exports = { PORT: 3103, DATABASE_URL: 'postgresql://llm:llm_secure_2026@localhost:5432/llm_gateway', TIP_DATABASE_URL: 'postgresql://tip:tip_prod_2026@localhost:5432/transceiver_db', - OLLAMA_URL: 'https://ollama.fichtmueller.org', + OLLAMA_URL: 'http://192.168.178.213:11434', LOG_LEVEL: 'info', GITEA_URL: 'http://192.168.178.196:3000', GITEA_TOKEN: '', + // LLM Provider Configuration + CLAUDE_BRIDGE_URL: 'http://localhost:3250', + CLAUDE_BRIDGE_ENABLED: 'true', + LLM_PROVIDERS: 'claude,cerebras,groq,mistral,nvidia', + // Free LLM APIs (add keys as needed) + CEREBRAS_API_KEY: '', + GROQ_API_KEY: '', + MISTRAL_API_KEY: '', + NVIDIA_API_KEY: '', + OPENROUTER_API_KEY: '', }, // Restart on crash, but not on intentional stop autorestart: true,