This commit is contained in:
Tutur33
2024-03-03 18:29:39 +01:00
parent c9965e913f
commit d05019d1d5
11 changed files with 1471 additions and 4 deletions
+15
View File
@@ -0,0 +1,15 @@
module.exports = {
apps : [{
name: "selfBot",
script: "./main.ts",
exec_mode: "cluster",
instances: "1",
interpreter: "ts-node",
env: {
NODE_ENV: "development",
},
env_production: {
NODE_ENV: "production",
}
}]
}