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