From 94408bcf32048136f9d455c5899a2371bb245e6e Mon Sep 17 00:00:00 2001 From: koplenov Date: Sat, 16 Aug 2025 14:06:26 +0300 Subject: [PATCH] add pm2 config --- ecosystem.config.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..015a34d --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,11 @@ +module.exports = { + apps: [ + { + name: "canary", + script: "node.js", + cwd: "./-/", + args: "port=9090", + autorestart: true, + }, + ], +};