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>
This commit is contained in:
Ubuntu
2026-02-10 18:37:42 +00:00
parent b30e8d18d4
commit 32ed02c1f3
3 changed files with 153 additions and 19 deletions

16
ecosystem.config.js Normal file
View File

@@ -0,0 +1,16 @@
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
}
}]
};