mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
d769c4426c
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
7 lines
96 B
JavaScript
7 lines
96 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: "uptime-kuma",
|
|
script: "./server/server.js",
|
|
}]
|
|
}
|