summaryrefslogtreecommitdiff
path: root/ecosystem.config.js
blob: 56456b9e395c62268f7af5cf3b8abe7f29dc9677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  apps: [
    {
      name: 'fin-stockopname',
      script: 'npm',
      args: 'start',
      instances: 1,
      autorestart: true,
      watch: false,
      max_memory_restart: '1G'
    }
  ]
}