-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
51 lines (51 loc) · 912 Bytes
/
config.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
{
"AsyncMessage": {
"PubTopics": [
"alarm",
"status",
"event"
],
"SubTopic": [
"event",
"notification"
]
},
"DBType": "dgraph",
"MaxOpenConns": 10,
"MaxIdleConns": 100,
"ConnMaxLifetime": 60000000000,
"Redis": {
"MasterName": "",
"SentinelAddrs": [
"localhost1",
"localhost2",
"localhost3"
],
"Host": "redis://127.0.0.1:6379",
"Password": "12345",
"MaxIdle": 1,
"MaxIdleTimeout": 1
},
"SQLite": {
"User": "admin",
"Password": "admin",
"Host": "localhost",
"DBName": "starter",
"Path": "./starter.db"
},
"Mongo": {
"User": "",
"Password": "",
"Host": "localhost",
"Port": 27017,
"DBName": "auth"
},
"Dgraph": {
"User": "dadmin",
"Password": "dadmin",
"Host": "localhost",
"Port": 0,
"DBName": "auth",
"Url": "127.0.0.1:9080"
}
}