-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
66 lines (66 loc) · 1.66 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
{
"products": [
{
"name": "Iphone 1",
"description": "A nice mobile phone",
"qauntity": "5",
"imageLink": "https://images.pexels.com/photos/461198/pexels-photo-461198.jpeg?cs=srgb&dl=burrito-chicken-close-up-461198.jpg&fm=jpg",
"price": "$5",
"category": "fashion",
"expireDate": "2019-03-21",
"id": 1
},
{
"name": "Iphone 58",
"description": "A nice mobile",
"qauntity": "900",
"imageLink": "https://images.pexels.com/photos/461198/pexels-photo-461198.jpeg?cs=srgb&dl=burrito-chicken-close-up-461198.jpg&fm=jpg",
"price": "$900",
"expireDate": "2019-03-19",
"category": "computing",
"id": 2
},
{
"name": "Iphone 2",
"description": "A nice mobile",
"qauntity": "9",
"imageLink": "https://images.pexels.com/photos/461198/pexels-photo-461198.jpeg?cs=srgb&dl=burrito-chicken-close-up-461198.jpg&fm=jpg",
"price": "$9",
"expireDate": "2019-03-19",
"category": "computing",
"id": 3
},
{
"name": "Iphone 50",
"description": "A nice mobile phone",
"qauntity": "500",
"imageLink": "https://images.pexels.com/photos/461198/pexels-photo-461198.jpeg?cs=srgb&dl=burrito-chicken-close-up-461198.jpg&fm=jpg",
"price": "$500",
"category": "fashion",
"expireDate": "2019-03-21",
"id": 4
}
],
"category": [
{
"computing": "computing"
},
{
"grocery": "grocery"
},
{
"fashion": "fashion"
},
{
"electronics": "electronics"
}
],
"admin": [
{
"username": "username"
},
{
"password": "password"
}
]
}