master/src/cli/parse-server.js line 54
options = Object.keys(definitions).reduce(function (options, key) { if (typeof program[key] !== 'undefined') { options[key] = program[key]; } return options; }, options);
E.g"mountPath": "/mymountPath",
typeof program[key] is defalut /parse
options = Object.keys(definitions).reduce(function (options, key) { if (typeof program[key] !== 'undefined' && typeof options[key] == 'undefined') { options[key] = program[key]; } return options; }, options);
master/src/cli/parse-server.jsline 54options = Object.keys(definitions).reduce(function (options, key) { if (typeof program[key] !== 'undefined') { options[key] = program[key]; } return options; }, options);E.g
"mountPath": "/mymountPath",typeof program[key]is defalut/parseoptions = Object.keys(definitions).reduce(function (options, key) { if (typeof program[key] !== 'undefined' && typeof options[key] == 'undefined') { options[key] = program[key]; } return options; }, options);