-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.sample.json
57 lines (57 loc) · 2 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"listenAddress": "127.0.0.1",
"listenPort": 8082,
"logging": {
"path": "",
"level": "debug"
},
"serverReadTimeoutSecs": 120,
"serverWriteTimeoutSecs": 60,
"corsAllowedOrigins": ["http://localhost:8081"],
"db" : {
"host": "dbserver",
"name": "scollex",
"user": "scollex",
"password": "*******",
"port": 5432,
"poolSize": 5
},
"corpora": [
{
"name": "intercorp_v13ud_cs",
"size": 259002702,
"hasMaterializedViews": true,
"syntax": {
"parentIdxAttr": {"name": "parent", "verticalCol": 10},
"lemmaAttr": {"name": "lemma", "verticalCol": 3},
"parLemmaAttr": {"name": "p_lemma", "verticalCol": 11},
"posAttr": {"name": "upos", "verticalCol": 4},
"parPosAttr": {"name": "p_upos", "verticalCol": 12},
"funcAttr": {"name": "deprel", "verticalCol": 9},
"nounPosValue": "NOUN",
"verbPosValue": "VERB",
"nounModifiedValue": "nmod",
"nounSubjectValue": "nsubj",
"nounObjectValue": "obj|iobj"
}
},
{
"name": "intercorp_v13ud_en",
"size": 161867949,
"hasMaterializedViews": false,
"syntax": {
"parentIdxAttr": {"name": "parent", "verticalCol": 8},
"lemmaAttr": {"name": "lemma", "verticalCol": 3},
"parLemmaAttr": {"name": "p_lemma", "verticalCol": 10},
"posAttr": {"name": "upos", "verticalCol": 4},
"parPosAttr": {"name": "p_upos", "verticalCol": 11},
"funcAttr": {"name": "deprel", "verticalCol": 8},
"nounPosValue": "NOUN",
"verbPosValue": "VERB",
"nounModifiedValue": "nmod",
"nounSubjectValue": "nsubj",
"nounObjectValue": "obj|iobj"
}
}
]
}