t2-stat-parser/build/api/ecosystem._DEV_.config.js

15 lines
341 B
JavaScript
Raw Permalink Normal View History

2020-08-31 20:27:31 +00:00
module.exports = {
apps: [
{
name: process.env.APP_NAME,
cwd: '/opt/node_app/app/',
script: 'npm run start:dev --interpreter bash',
// Options reference: https://pm2.keymetrics.io/docs/usage/application-declaration/
instances: 1,
autorestart: true,
watch: false,
ignore_watch: [ 'node_modules', 'dist' ]
}
]
};