mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-01-20 01:34:47 +00:00
20 lines
662 B
JavaScript
20 lines
662 B
JavaScript
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,
|
|
}]
|
|
};
|