Files
step-competition/ecosystem.config.js
2025-10-20 15:38:42 +02:00

21 lines
515 B
JavaScript

module.exports = {
apps: [{
name: 'monster-dash',
script: './src/server.js',
cwd: '/home/sascha/gitea/step-competition',
exec_mode: 'fork',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '500M',
env: {
NODE_ENV: 'production',
PORT: 3060
},
error_file: '/home/sascha/.pm2/logs/monster-dash-error.log',
out_file: '/home/sascha/.pm2/logs/monster-dash-out.log',
log_date_format: 'YYYY-MM-DD HH:mm:ss Z',
merge_logs: true
}]
};