From 5b11f4bd11ef179525480b8f5dbd3eee27b9f971 Mon Sep 17 00:00:00 2001 From: Till JS Date: Tue, 31 Mar 2026 18:20:42 +0200 Subject: [PATCH] fix(uload-web): add health endpoint for Docker healthcheck Co-Authored-By: Claude Opus 4.6 --- apps/uload/apps/web/src/routes/health/+server.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 apps/uload/apps/web/src/routes/health/+server.ts diff --git a/apps/uload/apps/web/src/routes/health/+server.ts b/apps/uload/apps/web/src/routes/health/+server.ts new file mode 100644 index 000000000..0e4f5c338 --- /dev/null +++ b/apps/uload/apps/web/src/routes/health/+server.ts @@ -0,0 +1,3 @@ +import { json } from '@sveltejs/kit'; + +export const GET = () => json({ status: 'ok' });