Refactor event management code to streamline CSV processing and enhance error reporting. Improve team overview page layout for increased usability and performance.

This commit is contained in:
Torsten Schulz (local)
2025-10-21 00:52:04 +02:00
parent 75e5d90dc6
commit 94b5dc60fc
3 changed files with 152 additions and 0 deletions

20
ecosystem.config.js Normal file
View File

@@ -0,0 +1,20 @@
module.exports = {
apps: [{
name: 'harheimertc',
script: 'npm',
args: 'run start',
cwd: '/var/www/harheimertc',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '1G',
env: {
NODE_ENV: 'production',
PORT: 3100
},
error_file: '/var/log/pm2/harheimertc-error.log',
out_file: '/var/log/pm2/harheimertc-out.log',
log_file: '/var/log/pm2/harheimertc-combined.log',
time: true
}]
}