From 518a48d0ca72bfb8f1e6f8052e520ed81c7f445b Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Wed, 22 Jun 2022 12:01:35 -0700 Subject: [PATCH] Add PM2 ecosystem 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..a52d389 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,7 @@ +module.exports = { + apps: [{ + name: "tatoeba-api", + script: "./index.js", + args: "5000" + }] +};