add pm2 config

This commit is contained in:
koplenov 2025-08-16 14:06:26 +03:00
parent ec1edc2208
commit 94408bcf32

11
ecosystem.config.js Normal file
View file

@ -0,0 +1,11 @@
module.exports = {
apps: [
{
name: "canary",
script: "node.js",
cwd: "./-/",
args: "port=9090",
autorestart: true,
},
],
};