1234567891011121314151617 |
- const pkg = require('./package.json')
- module.exports = {
- apps: [{
- name: pkg.name,
- script: './server/server.js',
-
- instances: 1,
- max_memory_restart: '150M',
- env: {
- NODE_ENV: 'production'
- },
- watch: ['dist'],
- ignore_watch: ['node_modules'],
- watch_delay: 5e3
- }]
- }
|