feat/ci-pipeline (#1)

Reviewed-on: #1
This commit is contained in:
2025-08-29 12:15:22 +10:00
parent 672960840e
commit 18054bc982
2 changed files with 74 additions and 3 deletions

View File

@@ -1,9 +1,10 @@
import pkg from "../../../../package.json";
export async function GET() {
const json = require("../../../../package.json");
const response = {
"status": "Healthy",
"version": json.version
}
"version": pkg.version
};
return new Response(JSON.stringify(response), {
status: 200,
headers: {