Files

12 lines
368 B
JavaScript
Raw Permalink 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.
/**
* 仅子代理(一般不单独用;默认请 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-")),
};