Disabled PM2 logging to $HOME/.pm2

This commit is contained in:
Isaac Abadi
2021-09-30 08:42:20 -06:00
parent a7f1f1eb8e
commit b2d8c4ef55

View File

@@ -2,6 +2,8 @@ module.exports = {
apps : [{
name : "YoutubeDL-Material",
script : "./app.js",
watch : "placeholder"
watch : "placeholder",
out_file: "/dev/null",
error_file: "/dev/null"
}]
}