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

68
production-setup.sh Normal file
View File

@@ -0,0 +1,68 @@
# Harheimer TC - Production Server Setup
# PM2 Konfiguration für Nuxt 3 Backend
# PM2 installieren
npm install -g pm2
# Environment-Datei erstellen
cat > .env.production << EOF
NODE_ENV=production
PORT=3100
SMTP_HOST=your-smtp-host
SMTP_PORT=587
SMTP_USER=j.dichmann@gmx.de
SMTP_PASS=your-password
SMTP_FROM=j.dichmann@gmx.de
SMTP_TO=j.dichmann@gmx.de
EOF
# PM2 Ecosystem-Datei erstellen
cat > ecosystem.config.js << EOF
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
}]
}
EOF
# PM2 starten
pm2 start ecosystem.config.js
pm2 save
pm2 startup
# Apache-Konfiguration für Backend-Proxy
cat > /etc/apache2/sites-available/harheimertc-api.tsschulz.de.conf << EOF
<VirtualHost *:443>
ServerName harheimertc-api.tsschulz.de
ServerAdmin admin@tsschulz.de
# SSL-Konfiguration
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/harheimertc-api.tsschulz.de/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/harheimertc-api.tsschulz.de/privkey.pem
# Proxy zu Nuxt Backend
ProxyPreserveHost On
ProxyPass / http://localhost:3100/
ProxyPassReverse / http://localhost:3100/
# Logs
ErrorLog \${APACHE_LOG_DIR}/harheimertc-api-error.log
CustomLog \${APACHE_LOG_DIR}/harheimertc-api-access.log combined
</VirtualHost>
EOF