Add operator-backed services status dashboard and update health endpoints

This commit is contained in:
Alexa Amundson
2025-11-22 12:41:31 -06:00
parent da8fb30f51
commit 85b7b5b653
6 changed files with 240 additions and 3 deletions

View File

@@ -1,8 +1,15 @@
import { NextResponse } from 'next/server';
import { serverConfig } from '@/lib/config';
export async function GET() {
const timestamp = new Date().toISOString();
return NextResponse.json({
ok: true,
status: 'ok',
service: 'prism-console'
service: 'prism-console',
timestamp,
ts: timestamp,
environment: serverConfig.environment
});
}