build: add pm2 ecosystem config

This commit is contained in:
Ivan Li 2021-06-30 20:25:00 +08:00
parent 07f19101a5
commit 9908bd229e

14
ecosystem.config.js Normal file
View File

@ -0,0 +1,14 @@
module.exports = {
apps: [
{
name: 'fennec-be',
script: 'npm',
args: 'run start:prod',
watch: false,
ignore_watch: ['node_modules'],
log_date_format: 'MM-DD HH:mm:ss.SSS Z',
env: {},
max_restarts: 5,
},
],
};