feat(deploy): add production runtime foundation

This commit is contained in:
2026-03-06 09:48:36 +00:00
parent f4ff058a8f
commit b8d2693c67
6 changed files with 155 additions and 6 deletions

13
app/api/health/route.ts Normal file
View File

@@ -0,0 +1,13 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json(
{
ok: true,
service: "plesk-agency-portal",
timestamp: new Date().toISOString(),
environment: process.env.NODE_ENV ?? "development",
},
{ status: 200 },
);
}