first commit

This commit is contained in:
2026-07-08 19:17:05 +02:00
parent f001b0ca63
commit 786b161dae
19 changed files with 2492 additions and 79 deletions
+16
View File
@@ -0,0 +1,16 @@
import { NextResponse } from 'next/server';
export async function GET() {
const envCheck = {
hasGeoapify: !!process.env.GEOAPIFY_API_KEY,
hasTicketmaster: !!process.env.TICKETMASTER_API_KEY,
hasLLM: !!process.env.LLM_API_KEY,
hasDb: !!process.env.DATABASE_URL,
};
return NextResponse.json({
status: 'ok',
env: envCheck,
timestamp: new Date().toISOString(),
});
}