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

ecosystem.config.js 329B

1234567891011121314
  1. module.exports = {
  2. apps: [{
  3. name: 'remote-collab',
  4. script: 'src/backend/server.js',
  5. instances: 1,
  6. autorestart: true,
  7. watch: false,
  8. max_memory_restart: '512M',
  9. env: { PORT: 3004 },
  10. error_file: './logs/error.log',
  11. out_file: './logs/out.log',
  12. log_date_format: 'YYYY-MM-DD HH:mm:ss'
  13. }]
  14. };