-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseed.js
72 lines (66 loc) · 1.86 KB
/
seed.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { PrismaClient } from "@prisma/client";
import { faker } from "@faker-js/faker";
const prisma = new PrismaClient();
async function main() {
// Create 10 users
const users = await Promise.all(
Array.from({ length: 10 }).map(() =>
prisma.user.create({
data: {
name: faker.person.fullName(),
address:
faker.location.streetAddress() + ", " + faker.location.city(),
email: faker.internet.email(),
},
})
)
);
// Create 10 products
const products = await Promise.all(
Array.from({ length: 10 }).map(() =>
prisma.product.create({
data: {
name: faker.commerce.productName(),
description: faker.commerce.productDescription(),
price: parseFloat(faker.commerce.price()),
},
})
)
);
// Generate 100 orders, each associated with a random user
for (let i = 0; i < 100; i++) {
// Randomly select a user for this order
const randomUser = users[Math.floor(Math.random() * users.length)];
await prisma.order.create({
data: {
userId: randomUser.id,
fulfillmentStatus: faker.helpers.arrayElement([
"Pending",
"Shipped",
"Delivered",
]),
lineItems: {
create: Array.from({
length: faker.number.int({ min: 1, max: 5 }),
}).map(() => {
const randomProduct =
products[Math.floor(Math.random() * products.length)];
return {
productId: randomProduct.id,
quantity: faker.number.int({ min: 1, max: 3 }),
};
}),
},
},
});
}
console.log("Database seeded with 10 users, 10 products, and 100 orders.");
}
main()
.catch((e) => {
console.error(e);
process.exit(1);
})
.finally(async () => {
await prisma.$disconnect();
});