qrmaster.net

This commit is contained in:
Timo Knuth
2025-12-09 22:22:36 +01:00
parent 424c61a176
commit 8c5e2fa58e
37 changed files with 549 additions and 915 deletions

View File

@@ -8,10 +8,10 @@ async function main() {
const hashedPassword = await bcrypt.hash('demo123', 12);
const user = await prisma.user.upsert({
where: { email: 'demo@qrmaster.com' },
where: { email: 'demo@qrmaster.net' },
update: {},
create: {
email: 'demo@qrmaster.com',
email: 'demo@qrmaster.net',
name: 'Demo User',
password: hashedPassword,
},