Files
pokemon-showdown-client/api/config/pm2-example.config.cjs
2026-07-28 03:50:50 -07:00

10 lines
205 B
JavaScript

// apparently PM2 will try to load Bun, then fall back to ts-node
module.exports = {
apps: [{
name: "loginserver",
script: "./api/src/index.js",
interpreter: "node",
exec_mode: "cluster",
}],
};