traintimesPWA/ecosystem.config.js

15 lines
307 B
JavaScript
Raw Normal View History

module.exports = {
'apps' : [{
'name': 'Traintimes Server',
'script': './server.js',
'watch': ['./server.js', 'live/build']
}, {
'name': 'Twitter Grabber',
'script': './twitter.js',
'watch': './twitter.js',
'watch_delay': 10000,
'cron_restart' : '0 4 * * */3'
}]
};