first commit
This commit is contained in:
@@ -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(),
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user