mirror of
https://github.com/arthur-pbty/selfbot-discord.git
synced 2026-06-03 15:07:35 +02:00
15 lines
264 B
JavaScript
15 lines
264 B
JavaScript
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",
|
|
}
|
|
}]
|
|
} |