Chemin racine : /home/camfootbiz/app/
✅ Excellente structure - Organisation professionnelle et maintenable
// Fichier: /home/camfootbiz/app/ecosystem.config.js module.exports = { apps: [{ name: "camfoot-server", script: "./server.js", cwd: "/home/camfootbiz/app", instances: "max", exec_mode: "cluster", env: { NODE_ENV: "production", PORT: 3000 }, error_file: "/home/camfootbiz/app/logs/err.log", out_file: "/home/camfootbiz/app/logs/out.log", log_file: "/home/camfootbiz/app/logs/combined.log", time: true, autorestart: true, watch: false, max_memory_restart: "1G" }] }
# Se placer dans le répertoire cd /home/camfootbiz/app # Installation des dépendances npm install # Démarrage avec PM2 pm2 start ecosystem.config.js # Exécution des tests npm test # Surveillance des logs tail -f logs/combined.log