social-xhs-api-server/ecosystem.config.cjs
2025-05-03 01:15:20 +08:00

12 lines
310 B
JavaScript

const PORT = 5006;
// python -m uvicorn app:app --host 0.0.0.0 --port 5006
module.exports = {
apps: [
{
name: 'xhs-api-server',
interpreter: 'python', // 替换为您的Python解释器路径
args: ['-m uvicorn app:app --host 0.0.0.0 --port', PORT], // 传递端口参数
},
],
};