Files
crypto_monitor_user/manual_trading_hub/ecosystem.agents.config.cjs
T
dekun 53863559f4 Initialize crypto_monitor_user (user edition) from monitor codebase.
Retarget git remote, install path, and deploy docs from crypto_monitor to crypto_monitor_user.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-17 16:18:13 +08:00

12 lines
358 B
JavaScript

/**
* 仅子代理(一般不单独用;默认请 pm2 start ecosystem.config.cjs 一次起 hub+agent)
*
* 若只想重启子代理,不动中控:
* pm2 restart manual-agent-binance manual-agent-gate ...
*/
const main = require("./ecosystem.config.cjs");
module.exports = {
apps: main.apps.filter((a) => String(a.name).startsWith("manual-agent-")),
};