Files
stalendeuren/ecosystem.config.js
Ubuntu 32ed02c1f3 fix: TypeScript build errors and add production deployment
- Fix handle color type safety
- Fix RoundedBox args tuple type
- Remove invalid ellipseGeometry
- Add PM2 ecosystem config
- Add SSL setup automation script

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 18:37:42 +00:00

17 lines
344 B
JavaScript

module.exports = {
apps: [{
name: 'proinn-configurator',
script: 'node_modules/next/dist/bin/next',
args: 'start -p 3002',
cwd: '/home/anisy/projects/stalendeuren',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '1G',
env: {
NODE_ENV: 'production',
PORT: 3002
}
}]
};