Clarify health responses and required env vars

This commit is contained in:
Alexa Amundson
2025-11-22 18:27:48 -06:00
parent 85b7b5b653
commit 3c60bdc3b9
3 changed files with 16 additions and 8 deletions

View File

@@ -5,11 +5,11 @@ export async function GET() {
const timestamp = new Date().toISOString();
return NextResponse.json({
ok: true,
status: 'ok',
service: 'prism-console',
timestamp,
ts: timestamp,
environment: serverConfig.environment
meta: {
timestamp,
environment: serverConfig.environment
}
});
}