today/ecosystem.config.js
2017-10-26 11:17:26 +01:00

16 lines
311 B
JavaScript

module.exports = {
apps: [{
name: 'Today',
script: './todayV2.js',
interpreter: 'node@8.8.0',
'cwd': '/home/martind2000/dev/today',
'watch': false,
'ignore_watch': [
'node_modules', '.git'
],
'merge_logs': true,
'autorestart': true,
'restart_delay': 3500
}]
};