floter.design/ecosystem.config.cjs
2026-01-08 18:18:48 +13:00

22 lines
458 B
JavaScript

module.exports = {
apps: [{
name: 'floter-design',
script: './build/index.js',
cwd: '/floter-design',
instances: 1,
exec_mode: 'fork',
env: {
NODE_ENV: 'production',
PORT: 3001,
HOST: '0.0.0.0'
},
error_file: './logs/err.log',
out_file: './logs/out.log',
log_date_format: 'YYYY-MM-DD HH:mm:ss Z',
merge_logs: true,
autorestart: true,
watch: false,
max_memory_restart: '1G'
}]
};