-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.sample.json
36 lines (36 loc) · 1.05 KB
/
conf.sample.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
{
"listenAddress" : "127.0.0.1",
"listenPort": 8080,
"serverReadTimeoutSecs": 120,
"serverWriteTimeoutSecs": 60,
"corsAllowedOrigins": ["http://localhost:8081", "http://localhost:8082"],
"corpora": {
"registryDir": "/path/to/corpora/registry",
"splitCorporaDir": "/path/to/split/corpora/dir",
"multiprocChunkSize": 50000000,
"mktokencovPath": "/path/to/mktokencov/binary",
"resources": [
{
"id": "syn2020",
"fullName": {"en": "SYN 2020"},
"syntaxConcordance": {
"parentAttr": "someParent",
"resultAttrs": ["word", "lemma", "p_lemma", "parent"]
}
}
]
},
"redis": {
"host": "10.0.3.130",
"port": 6379,
"db": 7,
"password": "secret",
"channelQuery": "channel",
"channelResultPrefix": "res",
"queryAnswerTimeoutSecs": 600
},
"logFile": "",
"logLevel": "debug",
"language": "en",
"timeZone": "UTC"
}