-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
71 lines (71 loc) · 1.63 KB
/
db.json
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
{
"users": [
{
"firstName": "SLEEKY",
"lastName": "TECHIES",
"password": "12345",
"email": "[email protected]",
"phoneNumber": "07062270726",
"id": 1
},
{
"firstName": "SLEEKY",
"lastName": "TECHIES",
"password": "123456",
"email": "[email protected]",
"phoneNumber": "7062270726",
"id": 2
},
{
"firstName": "Florence",
"lastName": "Acha",
"password": "123456",
"email": "[email protected]",
"phoneNumber": "08162395946",
"id": 3
}
],
"admin": [
{
"firstName": "SLEEKY",
"lastName": "TECHIES",
"password": "12345",
"email": "[email protected]",
"phoneNumber": "07062270726",
"id": 1
}
],
"products": [
{
"ProductName": "Beans",
"category": "foods",
"Image": "img/productsImage/burger.jpg",
"quantity": "3234",
"Description": " 3242r32 ",
"price": "2",
"id": 1
},
{
"ProductName": "Beans",
"category": "foods",
"Image": "./img/productsImage/chineseSoup.jpg",
"quantity": "3234",
"Description": " 3242r32 ",
"price": "2",
"id": 2
}
],
"orders": [
{
"UserName": "Obikaonu Samuel",
"Email": "[email protected]",
"ProductName": "Beans",
"Quantity": "2",
"category": "foods",
"Address": "67, Ayodele Street, Fadeyi, Lagos State, Nigeria.",
"PhoneNumber": "07062270726",
"price": "2",
"id": 1
}
]
}