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.
60 lines
835 B
60 lines
835 B
3 years ago
|
|
||
3 years ago
|
|
||
|
/*
|
||
|
*
|
||
|
* Application index
|
||
|
*
|
||
|
* url = http or https
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
export const myApiIndex = [
|
||
|
{
|
||
|
"swarmlabname": "microservice-etherpad",
|
||
|
"info": 'http',
|
||
|
"version": 0,
|
||
|
"port": 0
|
||
|
}
|
||
|
];
|
||
|
|
||
|
|
||
3 years ago
|
/*
|
||
|
*
|
||
|
* Config4Web interface
|
||
|
*
|
||
|
* port = 0 // Auto
|
||
|
*
|
||
|
* url = http or https
|
||
|
*
|
||
|
*/
|
||
|
|
||
3 years ago
|
export const myApiConfigWEB = [
|
||
3 years ago
|
{
|
||
|
"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
|
||
|
*
|
||
|
*/
|
||
3 years ago
|
export const myApiConfigGUI = [
|
||
3 years ago
|
{
|
||
|
"name": "microservice-firefox",
|
||
|
"automated": true,
|
||
|
"version": 0,
|
||
|
"port": 0
|
||
|
}
|
||
|
];
|
||
|
|