summaryrefslogtreecommitdiff
path: root/ecosystem.config.js
blob: 0429088aad28cfa06197679509e20fc788d6018d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module.exports = {
  apps: [
    {
      name: 'next-indoteknik',
      script: 'npm',
      args: 'start',
      instances: 'max',
      autorestart: true,
      watch: false,
      max_memory_restart: '1G',
      env: {
        NODE_ENV: 'development'
      },
      env_production: {
        NODE_ENV: 'production'
      }
    }
  ]
}