31 lines
611 B
TypeScript
31 lines
611 B
TypeScript
import { PrismaClient } from '@prisma/client';
|
|
import * as bcrypt from 'bcrypt';
|
|
|
|
const prisma = new PrismaClient();
|
|
|
|
async function main() {
|
|
const hashedPassword = await bcrypt.hash('admin123', 10);
|
|
|
|
const admin = await prisma.user.upsert({
|
|
where: { email: 'admin@example.com' },
|
|
update: {},
|
|
create: {
|
|
email: 'admin@example.com',
|
|
name: 'Admin User',
|
|
password: hashedPassword,
|
|
isAdmin: true,
|
|
},
|
|
});
|
|
|
|
console.log({ admin });
|
|
}
|
|
|
|
main()
|
|
.catch((e) => {
|
|
console.error(e);
|
|
process.exit(1);
|
|
})
|
|
.finally(async () => {
|
|
await prisma.$disconnect();
|
|
});
|