Remove ecosystem configuration file for Harheimer TC, streamlining project structure.

This commit is contained in:
Torsten Schulz (local)
2025-10-21 00:58:42 +02:00
parent 94b5dc60fc
commit 87c71b1382
2 changed files with 15 additions and 0 deletions

15
ecosystem.simple.cjs Normal file
View File

@@ -0,0 +1,15 @@
module.exports = {
apps: [{
name: 'harheimertc',
script: 'npm',
args: 'run start',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '1G',
env: {
NODE_ENV: 'production',
PORT: 3100
}
}]
}