Files
goodgo-platform/apps/web/app/api/health/route.ts
Ho Ngoc Hai c00ac88f26 fix(deploy): allow variable expansion in deploy scripts and add web health route
Fix heredoc quoting in deploy workflow to allow IMAGE_TAG and
REGISTRY_URL variable expansion. Add Next.js API health check route.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-08 23:07:45 +07:00

10 lines
192 B
TypeScript

import { NextResponse } from 'next/server';
export function GET() {
return NextResponse.json({
status: 'ok',
service: 'goodgo-web',
timestamp: new Date().toISOString(),
});
}