Add ecosystem.config.js

This commit is contained in:
Lamp 2019-03-20 15:36:36 -07:00
parent ba69721700
commit 4d9932ae7c

15
ecosystem.config.js Normal file

@ -0,0 +1,15 @@
module.exports = {
apps: [
{
name: "OWOP Bot",
script: "index.js"
},
{
name: "OWOP Bot Archive",
script: "archive.js",
cron_restart: "0 * * * *", // @hourly
autorestart: false
}
]
};