pivot: migrate V1 mobile from Docker to Netlify serverless

- Switch Prisma schema from SQLite to PostgreSQL
- Add netlify.toml for Netlify deployment config
- Add @netlify/plugin-nextjs for serverless Next.js
- Remove Docker build files (Dockerfile, docker-compose, start.sh)
- Remove auto-healer and scripts directories
- Update next.config.ts (remove standalone output)
- Database: falah_mobile_v1 on Contabo Postgres
This commit is contained in:
2026-06-28 23:02:48 +02:00
parent 5b08f8b041
commit a1c5fecd83
117 changed files with 8619 additions and 2837 deletions
+53
View File
@@ -0,0 +1,53 @@
import { NextRequest, NextResponse } from "next/server";
const COMMUNITY_URL = process.env.COMMUNITY_URL || process.env.UMMAHID_URL || "http://ummahid:3000";
export async function POST(request: NextRequest) {
const authHeader = request.headers.get("authorization");
if (!authHeader) {
return NextResponse.json({ error: "Authorization required" }, { status: 401 });
}
try {
const body = await request.json();
const { amount } = body;
// If amount is 0 or not provided, return status summary (remaining obligation, nisab, etc.)
if (!amount || typeof amount !== "number" || amount < 0) {
return NextResponse.json(
{ error: "Amount is required and must be non-negative" },
{ status: 400 }
);
}
if (amount === 0) {
// Return zakat status summary
const ummahRes = await fetch(`${COMMUNITY_URL}/api/v2/zakat/status`, {
method: "GET",
headers: {
Authorization: authHeader,
},
});
const data = await ummahRes.json();
return NextResponse.json(data, { status: ummahRes.status });
}
const ummahRes = await fetch(`${COMMUNITY_URL}/api/v2/zakat/calculate`, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: authHeader,
},
body: JSON.stringify({ amount }),
});
const data = await ummahRes.json();
return NextResponse.json(data, { status: ummahRes.status });
} catch (error) {
console.error("[zakat-calculate] Proxy error:", error);
return NextResponse.json(
{ error: "Failed to calculate zakat" },
{ status: 502 }
);
}
}