- 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>
17 lines
344 B
JavaScript
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
|
|
}
|
|
}]
|
|
};
|