ecosystem.config.js 252 B

123456789101112131415
  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'case-psql',
  5. script: 'server.js',
  6. instances: 'max',
  7. autorestart: true,
  8. watch: false,
  9. max_memory_restart: '1G',
  10. env: {
  11. NODE_ENV: 'production'
  12. }
  13. }
  14. ]
  15. };