fix(health): derive /health version from package.json (kills the manual server.js bump gotcha)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -14,8 +14,12 @@ import { seedFromConfig } from './lib/health/registry.js';
|
||||
import { mcpAuth } from './lib/api/middleware/mcp_auth.js';
|
||||
import { handleMcp } from './lib/mcp/http.js';
|
||||
import httpProxy from 'http-proxy';
|
||||
import { readFileSync } from 'node:fs';
|
||||
|
||||
const VERSION = '2.6.1';
|
||||
// Read the version from package.json so a deploy never serves a stale /health
|
||||
// version (the old hardcoded const had to be bumped by hand and caused the
|
||||
// health-gated deploy to roll back 3x when forgotten).
|
||||
const VERSION = JSON.parse(readFileSync(new URL('./package.json', import.meta.url))).version;
|
||||
|
||||
// Proxy /terminal (+ its WebSocket) to ttyd on CT 300, so the embedded terminal
|
||||
// works whether the Void is reached via Traefik (void2-app.hynesy.com) OR the
|
||||
|
||||
Reference in New Issue
Block a user