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' + } +];