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

ecosystem.config.js 452B

123456789101112131415161718192021
  1. module.exports = {
  2. apps: [{
  3. name: 'ecommerce-inventory',
  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: 3003
  12. },
  13. env_production: {
  14. NODE_ENV: 'production',
  15. PORT: 3003
  16. },
  17. error_file: './logs/error.log',
  18. out_file: './logs/out.log',
  19. log_date_format: 'YYYY-MM-DD HH:mm:ss'
  20. }]
  21. };