module.exports = { apps: [ { name: 'chat-one-service', script: 'dist/main.js', node_args: '-r module-alias/register', cwd: '/srv/chat-one-service/current', instances: 1, exec_mode: 'fork', autorestart: true, watch: false, max_memory_restart: '1G', merge_logs: true, out_file: '/srv/chat-one-service/shared/logs/pm2-out.log', error_file: '/srv/chat-one-service/shared/logs/pm2-error.log', log_date_format: 'YYYY-MM-DD HH:mm:ss Z', env_production: { NODE_ENV: 'production', }, }, ], };