You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
427 B

  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'Saturday Sharing',
  5. script: './bin/www',
  6. time: true,
  7. exec_mode: 'cluster',
  8. instances: '1',
  9. node_args: ['--inspect=0.0.0.0:9229'],
  10. watch: true,
  11. ignore_watch: ['public/**/*', 'views/**/*.ejs'],
  12. env_production: {
  13. NODE_ENV: "production"
  14. },
  15. env_development: {
  16. NODE_ENV: "development"
  17. }
  18. },
  19. ],
  20. };