mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
12 lines
319 B
JavaScript
12 lines
319 B
JavaScript
module.exports = function(options, optimist) {
|
|
var config = require("./standalone")(options, optimist);
|
|
|
|
// TODO: cleanup unneeded plugins?
|
|
|
|
options.client_config = "default-terminal";
|
|
|
|
return config;
|
|
};
|
|
|
|
if (!module.parent) require("../server")([__filename].concat(process.argv.slice(2)));
|