-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathconfig.json
45 lines (35 loc) · 1.2 KB
/
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
{
"port": 8855,
"mongoip": "127.0.0.1",
"mongodatabase": "CyPhy",
"debug": false,
"decoratorpaths": ["./src/decorators"],
"visualizerDescriptors": ["./Visualizers.json"],
"pluginBasePaths": [
"./node_modules/webgme/src/plugin/coreplugins",
"./src/plugins/ADMEditor"
],
"rextrast": {
"executor": "./node_modules/webgme/src/middleware/executor/Executor",
"desert": "./src/rest/desert/Desert",
"serverinfo": "./src/rest/serverInfo/ServerInfo"
},
"paths": {
"ejs": "./node_modules/webgme/src/common/util/ejs",
"xmljsonconverter": "./utils/xmljsonconverter",
"sax": "./vendor/sax/sax",
"panels/ProjectAnalyzer": "./src/panels/ProjectAnalyzer",
"widgets/ProjectAnalyzer": "./src/widgets/ProjectAnalyzer",
"executor": "./node_modules/webgme/src/middleware/executor",
"desert": "./src/rest/desert",
"serverinfo": "./src/rest/serverInfo",
"CyPhyApp" : "./src/client",
"CyPhyMETA" : "./meta",
"cyphyDist": "./dist"
},
"test_paths": {
"mocks": "./test/mocks",
"test/models": "./test/models",
"test/lib": "./test/lib"
}
}