uptime-kuma/ecosystem.config.js
Slayer d769c4426c
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
2021-10-11 15:22:52 +03:00

7 lines
96 B
JavaScript

module.exports = {
apps: [{
name: "uptime-kuma",
script: "./server/server.js",
}]
}