You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
603 B
40 lines
603 B
|
|
/*
|
|
*
|
|
* Config4Web interface
|
|
*
|
|
* port = 0 // Auto
|
|
*
|
|
* url = http or https
|
|
*
|
|
*/
|
|
|
|
export const ApiConfigWEB = [
|
|
{
|
|
"name": "microservice-etherpad",
|
|
"automated": true,
|
|
"url": 'http',
|
|
"version": 0,
|
|
"port": 0
|
|
}
|
|
];
|
|
|
|
/*
|
|
*
|
|
* Config4a Asynchronous child creation
|
|
*
|
|
* https://nodejs.org/api/child_process.html#child_processspawncommand-args-options
|
|
*
|
|
*
|
|
* port = 0 // Auto
|
|
*
|
|
*/
|
|
export const ApiConfigGUI = [
|
|
{
|
|
"name": "microservice-firefox",
|
|
"automated": true,
|
|
"version": 0,
|
|
"port": 0
|
|
}
|
|
];
|
|
|
|
|