Initial commit of step-competition project

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-20 15:38:42 +02:00
commit 05e4a505b3
18 changed files with 5373 additions and 0 deletions

20
ecosystem.config.js Normal file
View File

@@ -0,0 +1,20 @@
module.exports = {
apps: [{
name: 'monster-dash',
script: './src/server.js',
cwd: '/home/sascha/gitea/step-competition',
exec_mode: 'fork',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '500M',
env: {
NODE_ENV: 'production',
PORT: 3060
},
error_file: '/home/sascha/.pm2/logs/monster-dash-error.log',
out_file: '/home/sascha/.pm2/logs/monster-dash-out.log',
log_date_format: 'YYYY-MM-DD HH:mm:ss Z',
merge_logs: true
}]
};