Nenhuma Descrição

ecosystem.config.js 331B

12345678910111213141516171819
  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'shuanghuiApi10089',
  5. script: 'dist/index.js',
  6. instances: 2,
  7. autorestart: true,
  8. watch: false,
  9. max_memory_restart: '1G',
  10. env: {
  11. NODE_ENV: 'development',
  12. },
  13. env_production: {
  14. NODE_ENV: 'production',
  15. },
  16. },
  17. ],
  18. };