mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
23 lines
372 B
JavaScript
23 lines
372 B
JavaScript
function randomClipperPort(state, env) {
|
|
if (!state) {
|
|
state = { offset: 0 };
|
|
} else {
|
|
state.offset++;
|
|
}
|
|
|
|
state.port = startPort(env) + state.offset;
|
|
|
|
return state;
|
|
}
|
|
|
|
function startPort(env) {
|
|
const startPorts = {
|
|
prod: 41184,
|
|
dev: 27583,
|
|
};
|
|
|
|
return env === 'prod' ? startPorts.prod : startPorts.dev;
|
|
}
|
|
|
|
module.exports = { randomClipperPort, startPort };
|