fix(v0.2.2): OLLAMA_URL pointed to localhost instead of .213 via WireGuard

Blog engine was falling back to template because qwen2.5:14b is on Mac Studio (.213),
not on Erik (localhost). Fixed ecosystem.config.js to use 192.168.178.213:11434.
This was the root cause why the 10-step pipeline never executed.
This commit is contained in:
Rene Fichtmueller 2026-03-31 09:28:34 +02:00
parent aa5d03bcf8
commit d69fff36c6
3 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ module.exports = {
POSTGRES_DB: "transceiver_db", POSTGRES_DB: "transceiver_db",
POSTGRES_USER: "tip", POSTGRES_USER: "tip",
POSTGRES_PASSWORD: "tip_prod_2026", POSTGRES_PASSWORD: "tip_prod_2026",
OLLAMA_URL: "http://localhost:11434", OLLAMA_URL: "http://192.168.178.213:11434",
QDRANT_URL: "http://localhost:6333", QDRANT_URL: "http://localhost:6333",
DOCLING_URL: "http://localhost:8100", DOCLING_URL: "http://localhost:8100",
}, },
@ -40,7 +40,7 @@ module.exports = {
POSTGRES_USER: "tip", POSTGRES_USER: "tip",
POSTGRES_PASSWORD: "tip_prod_2026", POSTGRES_PASSWORD: "tip_prod_2026",
QDRANT_URL: "http://localhost:6333", QDRANT_URL: "http://localhost:6333",
OLLAMA_URL: "http://localhost:11434", OLLAMA_URL: "http://192.168.178.213:11434",
CORS_ORIGINS: "https://eo-global-pulse.context-x.org,https://switchblade.context-x.org", CORS_ORIGINS: "https://eo-global-pulse.context-x.org,https://switchblade.context-x.org",
}, },
max_memory_restart: "300M", max_memory_restart: "300M",

View File

@ -67,7 +67,7 @@ app.get("/", (_req, res) => {
app.get("/api", (_req, res) => { app.get("/api", (_req, res) => {
res.json({ res.json({
name: "Transceiver Intelligence Platform", name: "Transceiver Intelligence Platform",
version: "0.2.1", version: "0.2.2",
endpoints: [ endpoints: [
"GET /api/transceivers?q=&form_factor=&speed=&category=&fiber_type=&wdm_type=&coherent=", "GET /api/transceivers?q=&form_factor=&speed=&category=&fiber_type=&wdm_type=&coherent=",
"GET /api/transceivers/:id", "GET /api/transceivers/:id",

View File

@ -14,7 +14,7 @@ healthRouter.get("/", async (_req: Request, res: Response) => {
res.json({ res.json({
success: true, success: true,
status: "healthy", status: "healthy",
version: "0.2.1", version: "0.2.2",
uptime: process.uptime(), uptime: process.uptime(),
database: { database: {
connected: true, connected: true,