t2-stat-parser/app/webapp/ecosystem._DEV_.config.js

20 lines
662 B
JavaScript
Raw Normal View History

2020-03-29 15:31:16 +00:00
module.exports = {
apps : [{
name: process.env.APP_NAME,
script: 'server.js',
// Options reference: https://pm2.keymetrics.io/docs/usage/application-declaration/
instances: 1,
autorestart: true,
watch: true,
ignore_watch:['node_modules','public','resources/js','resources/scss']
},
{
name: process.env.APP_NAME + '_react',
script: 'node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js "--watch"',
// Options reference: https://pm2.keymetrics.io/docs/usage/application-declaration/
instances: 1,
autorestart: false,
watch: false,
}]
};