-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseed.js
More file actions
99 lines (97 loc) · 3.19 KB
/
Copy pathseed.js
File metadata and controls
99 lines (97 loc) · 3.19 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
const bcrypt = require('bcryptjs')
const data = {
meals: [
{
name: "Fried Rice with Chicken",
description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure nam possimus vel, non voluptates ipsum.",
price: 450.99,
category: "Big man Size",
count_in_stock: 5,
},
{
name: "Fried Rice with Beef",
description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure nam possimus vel, non voluptates ipsum.",
price: 350.00,
category: "Big man Size",
count_in_stock: 2,
},
{
name: "Jollof Spaghetti with Chicken",
description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure nam possimus vel, non voluptates ipsum.",
price: 400.00,
category: "Big man Size",
count_in_stock: 1,
},
{
name: "Rice and Beans",
description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure nam possimus vel, non voluptates ipsum.",
price: 200.50,
category: "Hungry man Size",
count_in_stock: 8,
},
{
name: "Bucket Chicken",
description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure nam possimus vel, non voluptates ipsum.",
price: 5000.00,
category: "Family Size",
count_in_stock: 10,
}
],
orders: [
{
userId: '6329d01c7703617f421d1c68',
order_item: {
name: 'Fried Rice with Chicken',
quantity: 4,
image: './images/image.jpg',
price: 450.99,
meal: '632c62dd9b6ac77bfeae97bc'
},
order_date: '2022-09-22',
shipping_address: {
address: 'No 34A Gabon Crescent, Barnawa, Kaduna',
city: 'Kaduna',
postal_code: 800283
},
payment_method: 'Stripe',
payment_result: {
id: '123abc',
status: 'Successful',
update_time: '2022-09-20T14:42:13.746+00:00',
email_address: 'seedDB@gmail.com'
},
total_price: 18203.96,
}
],
reviews: [
{
userId: '6329d01c7703617f421d1c68',
comments: 'This Store is one of the best in town, really awesome delivery time!!',
ratings: 4.5
},{
userId: '6329d01c7703617f421d1c68',
comments: 'This Store is sophisticated, but can do more',
ratings: 3
},
{
userId: '6329d01c7703617f421d1c68',
comments: 'This Store is terribly aweful',
ratings: 0.5
}
],
vendors: [
{
name: 'Mr Biggs',
address: 'Tsaunin Kura 800104, Kaduna',
location: {
lat: 10.453562073934537,
lon: 7.46469406110017,
},
manager: {
name: 'Mr Biggs Manager\'s Name',
password: '1234',
}
}
]
}
module.exports = data;