From 2c6551d19d6f4d6be5b592945dd053f2fe413ca2 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Thu, 18 Aug 2022 00:07:45 -0700 Subject: [PATCH] Add pm2 configuration file --- 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..c6267f5 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,7 @@ +module.exports = { + apps: [{ + name: "image-api", + script: "./index.js", + args: "5001" + }] +};