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:
parent
c01d69e02e
commit
9bb2f549f8
@ -15,7 +15,7 @@ module.exports = {
|
|||||||
POSTGRES_DB: "transceiver_db",
|
POSTGRES_DB: "transceiver_db",
|
||||||
POSTGRES_USER: "tip",
|
POSTGRES_USER: "tip",
|
||||||
POSTGRES_PASSWORD: "***REDACTED***",
|
POSTGRES_PASSWORD: "***REDACTED***",
|
||||||
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: "***REDACTED***",
|
POSTGRES_PASSWORD: "***REDACTED***",
|
||||||
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",
|
||||||
|
|||||||
@ -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",
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user