ecosystem.config.js 388 B

12345678910111213141516171819202122
  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'ani-assistant',
  5. script: 'npm',
  6. args: 'start',
  7. cwd: './',
  8. instances: 1,
  9. autorestart: true,
  10. watch: false,
  11. max_memory_restart: '1G',
  12. env: {
  13. NODE_ENV: 'production',
  14. PORT: 3000
  15. },
  16. env_production: {
  17. NODE_ENV: 'production',
  18. PORT: 3000
  19. }
  20. }
  21. ]
  22. }