-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample_config.json
50 lines (50 loc) · 1.07 KB
/
sample_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
{
"logger": {
"logLevel": "debug",
"logEnvironment": "local"
},
"dataSource": {
"driverName": "postgres",
"addr": "127.0.0.1",
"port": "5432",
"database": "",
"user": "",
"password": "",
"enableAutoMigrate": true,
"retries": 3
},
"grpc": {
"addr": "127.0.0.1",
"port": "8060",
"serverMinTime": 6000000000,
"serverTime": 7200000000000,
"serverTimeOut": 20000000000
},
"redis": {
"addr": ":6379",
"password": ""
},
"kafka": {
"brokers": [
"localhost:9092"
]
},
"jwtSecret": "",
"restServer": {
"addr": ":8050"
},
"aragon": {
"aragonPepper": "",
"aragonTime": 1,
"aragonMemory": 65536,
"aragonKeyLen": 64,
"aragonThreads": 16,
"aragonSaltLen": 4
},
"externalGrpc": {
"sampleGrpc": {
"addr": "127.0.0.1",
"port": "8060"
}
}
}