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>
10 lines
192 B
TypeScript
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(),
|
|
});
|
|
}
|