26 lines
584 B
JavaScript
26 lines
584 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'pilates-server',
|
|
script: 'dist/main.js',
|
|
instances: 'max',
|
|
exec_mode: 'cluster',
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '1G',
|
|
log_date_format: 'YYYY-MM-DD HH:mm:ss',
|
|
error_file: 'logs/error.log',
|
|
out_file: 'logs/output.log',
|
|
log_file: 'logs/combined.log',
|
|
merge_logs: true,
|
|
env_production: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3000
|
|
},
|
|
env_development: {
|
|
NODE_ENV: 'development',
|
|
PORT: 3001
|
|
}
|
|
}
|
|
]
|
|
};
|