today/ecosystem.config.js

16 lines
311 B
JavaScript
Raw Permalink Normal View History

2017-10-26 09:58:44 +00:00
module.exports = {
2017-10-26 10:01:30 +00:00
apps: [{
name: 'Today',
script: './todayV2.js',
2017-10-26 10:17:26 +00:00
interpreter: 'node@8.8.0',
2017-10-26 10:01:30 +00:00
'cwd': '/home/martind2000/dev/today',
'watch': false,
'ignore_watch': [
'node_modules', '.git'
],
'merge_logs': true,
'autorestart': true,
'restart_delay': 3500
2017-10-26 09:58:44 +00:00
}]
2017-10-26 10:01:30 +00:00
};