Files
zhimingge/app/api/health/route.ts
T
dekun 38bbc7145a Add /api/health and harden Docker deploy script for API route rollout.
404 on /api/ai indicates stale container; deploy script now uses --no-cache, stops PM2/port conflicts, and verifies /api/health.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-10 22:42:28 +08:00

9 lines
143 B
TypeScript

export async function GET() {
return Response.json({
ok: true,
service: "zhimingge",
apiAi: true,
build: "dba0245+",
});
}