mirror of
https://github.com/complexcaresolutions/telegram-media-bot.git
synced 2026-03-17 18:33:43 +00:00
17 lines
347 B
JavaScript
17 lines
347 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'telegram-media-bot',
|
|
script: './dist/index.js',
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '256M',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
},
|
|
error_file: './logs/error.log',
|
|
out_file: './logs/out.log',
|
|
merge_logs: true,
|
|
time: true,
|
|
}],
|
|
};
|