-
-
Notifications
You must be signed in to change notification settings - Fork 673
/
dummy.js
68 lines (65 loc) · 1.9 KB
/
dummy.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
// This file contains dummy information data
var dummy_info = {
// Customer module configs
"users": [
{
"username": "admin",
"password": "admin"
},
{
"username": "roberto",
"password": "asdfpiuw981"
}
],
"products": [
{
"name": "My public privacy",
"description": "Grant privacy in public to watch your favorite programs",
"price": parseInt(Math.random() * 100),
"image": "product_1.jpg"
},
{
"name": "The USB rocket",
"description": "Be happy with your USB rocket. Functionality: none. Usability: none. The best choice!",
"price": parseInt(Math.random() * 100),
"image": "product_2.jpg"
},
{
"name": "Walker watermelons",
"description": "Take a walk your watermelons and make it feel comfortable.",
"price": parseInt(Math.random() * 100),
"image": "product_3.jpg"
},
{
"name": "Potty Putter",
"description": "The game for the avid golfers!",
"price": 20,
"image": "product_4.jpg"
},
{
"name": "Phone Fingers",
"description": "Phone fingers work perfectly well with iPhone's touch screen and prevent fingerprints and smudges",
"price": 3,
"image": "product_5.jpg"
},
{
"name": "Daddle",
"description": "Be the best father with Daddle: dad's saddle for horsing around.",
"price": parseInt(Math.random() * 100),
"image": "product_6.jpg"
},
{
"name": "HD Vision",
"description": "Reality is not enough for you? Improve your live with the HD vision glasses.",
"price": parseInt(Math.random() * 100),
"image": "product_7.jpg"
},
{
"name": "Hangs free",
"description": "Say goodbye to the cumbersome cables with the authentic hands free.",
"price": parseInt(Math.random() * 100),
"image": "product_8.jpg"
}
]
}
module.exports = dummy_info;