-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
53 lines (51 loc) · 877 Bytes
/
data.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
/**
* Data container for dummy data.
*/
module.exports = {
// Warning: most unsecure plain-text authentication system you'll ever see below
users: {
'demo1': {
password: 'password123'
},
'demo2': {
password: 'oranges'
}
},
nodes: [
{
id: 1,
title: 'dxbpi1',
ip: '94.202.105.172',
status: 'offline',
active: true
},
{
id: 2,
title: 'seapi1',
ip: '50.47.111.48',
status: 'online',
active: true
},
{
id: 3,
title: 'seapi2',
ip: '67.170.105.255',
status: 'online',
active: true
},
{
id: 4,
title: 'cadpi1',
ip: '74.334.224.48',
status: 'online',
active: true
},
{
id: 5,
title: 'dxbpi2',
ip: '94.202.105.173',
status: 'offline',
active: true
}
]
}