UNPKG

sensai

Version:

Because even AI needs a master

61 lines (60 loc) 2.26 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, // create start command "default", { enumerable: true, get: function() { return _default; } }); const _commander = /*#__PURE__*/ _interop_require_wildcard(require("commander")); const _constants = require("../constants"); function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interop_require_wildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = { __proto__: null }; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for(var key in obj){ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } const _default = new _commander.Command().command(_constants.SENSAI_COMMAND.START).description("Description:\n Start production server.\nThe project should be compiled with `sensai build` first.").option("-p, --port <number>", "port number on which to start the API server", process.env.PORT || _constants.PROD_SERVER_DEFAULT_PORT).usage("<dir> -p <port number>").action(async (options)=>{ const { default: command } = await import("@/src/commands/start"); await command({ port: Number(options.port) }); });