智慧水务管理系统 - 精河县供水工程综合管理平台

ecosystem.config.js 535B

12345678910111213141516171819202122232425
  1. module.exports = {
  2. apps: [{
  3. name: 'crm-system',
  4. script: 'src/backend/server.js',
  5. instances: 1,
  6. autorestart: true,
  7. watch: false,
  8. max_memory_restart: '512M',
  9. env: {
  10. NODE_ENV: 'development',
  11. PORT: 3002
  12. },
  13. env_production: {
  14. NODE_ENV: 'production',
  15. PORT: 8080
  16. },
  17. error_file: './logs/error.log',
  18. out_file: './logs/out.log',
  19. log_date_format: 'YYYY-MM-DD HH:mm:ss',
  20. merge_logs: true,
  21. min_uptime: '10s',
  22. max_restarts: 10,
  23. restart_delay: 4000
  24. }]
  25. };