017833cd99
- seed.ts: use ../src/generated/prisma/client (Prisma 7 entry point) - tsconfig.json: exclude prisma/ so seed.ts is not type-checked by Next.js build Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
80 lines
1.9 KiB
TypeScript
80 lines
1.9 KiB
TypeScript
import "dotenv/config";
|
|
import { PrismaClient } from "../src/generated/prisma/client";
|
|
import bcrypt from "bcryptjs";
|
|
|
|
const prisma = new PrismaClient();
|
|
|
|
async function main() {
|
|
console.log("Seeding database...");
|
|
|
|
const hashedPassword = await bcrypt.hash("Password123!", 10);
|
|
|
|
// Admin
|
|
const admin = await prisma.user.upsert({
|
|
where: { email: "admin@second-brain.ru" },
|
|
update: {},
|
|
create: {
|
|
email: "admin@second-brain.ru",
|
|
name: "Администратор",
|
|
emailVerified: true,
|
|
role: "admin",
|
|
accounts: {
|
|
create: {
|
|
accountId: "admin@second-brain.ru",
|
|
providerId: "credential",
|
|
password: hashedPassword,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
// Curator
|
|
const curator = await prisma.user.upsert({
|
|
where: { email: "curator@second-brain.ru" },
|
|
update: {},
|
|
create: {
|
|
email: "curator@second-brain.ru",
|
|
name: "Куратор",
|
|
emailVerified: true,
|
|
role: "curator",
|
|
accounts: {
|
|
create: {
|
|
accountId: "curator@second-brain.ru",
|
|
providerId: "credential",
|
|
password: hashedPassword,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
// Student
|
|
const student = await prisma.user.upsert({
|
|
where: { email: "student@second-brain.ru" },
|
|
update: {},
|
|
create: {
|
|
email: "student@second-brain.ru",
|
|
name: "Ученик",
|
|
emailVerified: true,
|
|
role: "student",
|
|
accounts: {
|
|
create: {
|
|
accountId: "student@second-brain.ru",
|
|
providerId: "credential",
|
|
password: hashedPassword,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
console.log("Created users:");
|
|
console.log(` Admin: ${admin.email}`);
|
|
console.log(` Curator: ${curator.email}`);
|
|
console.log(` Student: ${student.email}`);
|
|
console.log(" Password for all: Password123!");
|
|
console.log("Done.");
|
|
}
|
|
|
|
main()
|
|
.catch(console.error)
|
|
.finally(() => prisma.$disconnect());
|