From 0504c7f8c56d7710e8b0fdbf2bd63676ee853a22 Mon Sep 17 00:00:00 2001 From: WeeXnes Date: Thu, 6 Mar 2025 05:23:16 +0100 Subject: [PATCH] added pm2 start config --- ecosystem.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..9015970 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,9 @@ +export const apps = [ + { + name: 'MinecraftServerController', + port: '6060', + exec_mode: 'fork', + instances: 1, + script: './.output/server/index.mjs' + } +];