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:
16
ecosystem.config.js
Normal file
16
ecosystem.config.js
Normal 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
|
||||
}
|
||||
}]
|
||||
};
|
||||
Reference in New Issue
Block a user