main
Backend Deploy 🚀 / build-and-deploy (push) Has been cancelled

This commit is contained in:
Harun CAN
2026-05-06 10:48:07 +02:00
parent 2d6f068363
commit a40619ef33
44 changed files with 4295 additions and 126 deletions
+11
View File
@@ -0,0 +1,11 @@
const { PrismaClient } = require('@prisma/client');
const prisma = new PrismaClient();
async function main() {
const project = await prisma.project.findUnique({
where: { id: '686d6496-2963-4527-8703-02b843e50159' }
});
console.log("SOCIAL CONTENT:", JSON.stringify(project.socialContent, null, 2));
console.log("SEO:", project.seoTitle, project.seoKeywords);
}
main();