We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9788c1 commit 3ddf069Copy full SHA for 3ddf069
2 files changed
.env.example
@@ -7,10 +7,6 @@ DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/replane
7
# DATABASE_PORT=5432
8
# DATABASE_NAME=replane
9
10
-PG_INSECURE=true
11
-# local|self|production|test
12
-STAGE=local
13
-
14
# Force color output in terminal, for pretty test output
15
FORCE_COLOR=1
16
src/app/mbx-health/route.ts
@@ -0,0 +1,5 @@
1
+import {NextResponse} from 'next/server';
2
+
3
+export function GET() {
4
+ return NextResponse.json({status: 'ok'});
5
+}
0 commit comments