rework removing providers filters, and clean up project a little

Also wraps in pm2, and introduces linting, and dev watch
This commit is contained in:
iPromKnight
2024-02-02 13:27:15 +00:00
parent c1169a15ee
commit 188ffd10f3
39 changed files with 4294 additions and 312 deletions

View File

@@ -0,0 +1,14 @@
module.exports = {
apps: [
{
name: "torrentio-selfhostio",
script: "npm start",
cwd: "/app",
watch: ["./dist/index.cjs"],
autorestart: true,
env: {
...process.env
},
},
],
};