Update Railway config and health response

This commit is contained in:
Alexa Amundson
2025-11-21 13:46:18 -06:00
parent 3faddb72e6
commit c6d1e63e17
2 changed files with 11 additions and 9 deletions

View File

@@ -7,10 +7,10 @@ export async function GET() {
const healthy = services.every((service) => service.status === 'healthy' || service.status === 'not_configured');
const payload = {
status: 'ok',
service: 'prism-console',
ok: healthy,
service: SERVICE_ID,
ts: new Date().toISOString(),
status: healthy ? 'ok' : 'degraded',
environment: serverConfig.environment,
version: process.env.npm_package_version ?? 'unknown',
services