-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathgpii.flowManager.config.base.json5
40 lines (40 loc) · 1.37 KB
/
gpii.flowManager.config.base.json5
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
// This config contains common flow manager configurations that are shared by both Local Flow Manager and
// Cloud Based Flow Manager.
{
"type": "gpii.flowManager.config.base",
"options": {
"mainServerPort": 8081,
"distributeOptions": {
"flowManager.solutions": {
"record": {
"type": "gpii.flowManager.solutionsRegistry.dataSource",
"options": {
"gradeNames": "gpii.flowManager.solutionsRegistry.dataSource.moduleTerms",
"path": "%gpii-universal/testData/solutions/"
}
},
"target": "{that flowManager solutionsRegistryDataSource}"
}
},
"components": {
"server": {
"type": "kettle.server",
"options": {
"gradeNames": ["kettle.server.ws"],
"port": "{kettle.config}.options.mainServerPort",
"components": {
"flowManager": {
"type": "gpii.flowManager"
},
"ontologyHandler": {
"type": "gpii.ontologyHandler"
}
}
}
}
}
},
"require": [
"flowManager"
]
}