bot-eye-leak/ecosystem.config.js

15 lines
251 B
JavaScript
Raw Permalink Normal View History

2021-07-08 00:59:34 +02:00
module.exports = {
apps: [
{
2021-07-14 21:36:59 +02:00
name: require('package.json').name,
script: require('package.json').main,
2021-07-08 00:59:34 +02:00
max_memory_restart: '1000M',
wait_ready: true,
restart_delay: 5000,
env_production: {
NODE_ENV: 'production'
}
}
]
}