forked from ppanopticon/virtual-exhibition-manager
-
Notifications
You must be signed in to change notification settings - Fork 9
/
config.json
43 lines (43 loc) · 871 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
{
"database": {
"host": "127.0.0.1",
"port": 27017,
"database": "vrem"
},
"server": {
"documentRoot": "data",
"httpPort": 4545,
"httpsPort": 4546,
"enableSsl": false,
"keystorePath": "keystore.jks",
"keystorePassword": "password"
},
"cineast": {
"host": "127.0.0.1",
"httpPort": 4567,
"httpsPort": 4568,
"enableSsl": false,
"objectPath": "/objects",
"queryTimeoutSeconds": 60,
"somFeatures": {
"featureMap": {
"semantic": [
{
"tableName": "features_visualtextcoembedding",
"weight": 1.0
}
],
"visual": [
{
"tableName": "features_MedianColorGrid8",
"weight": 1.0
}
]
}
},
"simCategories": {
"semantic": "semantic",
"visual": "visual"
}
}
}