fennec-be/test/__mocks__/deploy-service/ecosystem.config.js

16 lines
303 B
JavaScript
Raw Normal View History

2021-09-08 23:04:11 +08:00
module.exports = {
apps: [
{
name: 'app',
script: __dirname + '/index.js',
watch: false,
ignore_watch: ['node_modules'],
log_date_format: 'MM-DD HH:mm:ss.SSS Z',
env: {},
max_restarts: 5,
kill_timeout: 10_000,
wait_ready: true,
},
],
};