Files
qiming/qiming-file-server/scripts/start-cli.js

11 lines
275 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env node
/**
* CLI 环境启动脚本ESM
* 由 qiming-file-server CLI 命令调用
*/
if (!process.env.NODE_ENV) process.env.NODE_ENV = "production";
console.log("[CLI] 启动服务 - 环境: " + process.env.NODE_ENV);
await import("../src/server.js");