mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-08-19 17:34:14 -05:00
10 lines
205 B
JavaScript
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",
|
|
}],
|
|
};
|