From 79152a1b5c6df98ba724148c30c744a1bb2878e1 Mon Sep 17 00:00:00 2001 From: C Date: Fri, 3 Feb 2023 15:43:10 +0500 Subject: [PATCH] pm2 ecosystem file added to disable treekill --- ecosystem.config.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..90a58ab --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,7 @@ +module.exports = { + apps : [{ + name : "app1", + script : "./app.js", + treekill: false + }] +}