-
Notifications
You must be signed in to change notification settings - Fork 0
/
dedop-config.template.js
61 lines (57 loc) · 1.96 KB
/
dedop-config.template.js
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
58
59
60
61
module.exports = {
/**
* DeDop WebAPI service configuration.
*/
webAPIConfig: {
/**
* DeDop WebAPI service executable which points into DeDop's Python environment where dedop-core
* has be installed, e.g. using "python setup.py develop" or "python setup.py install".
* In the sample command below, dedop-webapi was installed under pyharm-dedop miniconda environment.
*/
command: "C:\\Miniconda3\\envs\\pycharm-dedop\\Scripts\\dedop-webapi.exe",
/**
* The port used by the DeDop WebAPI service
*/
servicePort: 9090,
/**
* The address used by the DeDop WebAPI service, use empty string to denote localhost (127.0.0.1)
*/
serviceAddress: '',
/**
* The file in which DeDop WebAPI service stores its configuration while it is running.
*/
serviceFile: 'dedop-webapi-info.json',
/**
* Additional process invocation options.
* For details refer to https://nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options
*/
processOptions: {},
/**
* Ignore all setting above and use a mock service instead, useful for development.
*/
useMockService: false,
},
/**
* DeDop's user preferences file, default is ~/.dedop/dedop-prefs.json
*/
prefsFile: null,
/**
* Set whether or not DevTools are initially opened.
*/
devToolsOpened: true,
/**
* List of Chrome DevTools extensions. See
* - https://developer.chrome.com/devtools
* - https://github.com/MarshallOfSound/electron-devtools-installer
*/
devToolsExtensions: [
// "EMBER_INSPECTOR",
// "REACT_DEVELOPER_TOOLS",
// "BACKBONE_DEBUGGER",
// "JQUERY_DEBUGGER",
// "ANGULARJS_BATARANG",
// "VUEJS_DEVTOOLS",
// "REDUX_DEVTOOLS",
// "REACT_PERF",
],
};