-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a51653c
commit 3e001ee
Showing
4 changed files
with
64 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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: 2999, | ||
/** | ||
* 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", | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters