From d769c4426c6ff8095c34f191c292f064513c11e8 Mon Sep 17 00:00:00 2001 From: Slayer <51095261+GhostSlayer@users.noreply.github.com> Date: Mon, 11 Oct 2021 15:22:52 +0300 Subject: [PATCH] Create PM2 Config file I don't know if this is a good idea, but users that prefer to use PM2 instead, they can run `pm2 start` instead of `pm2 start server/server.js --name uptime-kuma` with this configuration --- ecosystem.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 00000000..5f403400 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,6 @@ +module.exports = { + apps: [{ + name: "uptime-kuma", + script: "./server/server.js", + }] +}