traintimesPWA/ecosystem.config.js

18 lines
352 B
JavaScript
Raw Permalink Normal View History

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