fix: amélioration gestion erreur port déjà utilisé

- Support variable PORT en environnement
- Gestion propre de l'erreur EADDRINUSE
- Message d'aide pour utiliser un port alternatif

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-05-21 15:21:21 +02:00
parent 0640a9f0b6
commit 652384708e
+13 -2
View File
@@ -20,7 +20,7 @@ const LIVEKIT_API_KEY = process.env.LIVEKIT_API_KEY || 'devkey';
const LIVEKIT_API_SECRET = process.env.LIVEKIT_API_SECRET || 'secret';
const LIVEKIT_URL = process.env.LIVEKIT_URL || config.server.livekit.url;
const USE_LOCAL_LIVEKIT = process.env.USE_LOCAL_LIVEKIT === 'true';
const SERVER_PORT = config.server.port;
const SERVER_PORT = parseInt(process.env.PORT || config.server.port, 10);
const SERVER_HOST = config.server.host;
// Logging
@@ -261,13 +261,24 @@ async function start() {
}
// 2. Démarrer API REST
app.listen(SERVER_PORT, SERVER_HOST, () => {
const server = app.listen(SERVER_PORT, SERVER_HOST, () => {
log('info', `✓ API REST démarrée sur http://${SERVER_HOST}:${SERVER_PORT}`);
log('info', '');
log('info', 'Serveur prêt !');
log('info', `Groupes configurés: ${config.groups.map(g => g.name).join(', ')}`);
});
// Gérer erreur port déjà utilisé
server.on('error', (error) => {
if (error.code === 'EADDRINUSE') {
log('error', `❌ Port ${SERVER_PORT} déjà utilisé`);
log('info', `💡 Essayez avec: PORT=3001 npm run dev`);
process.exit(1);
} else {
throw error;
}
});
} catch (error) {
log('error', 'Erreur démarrage:', error);
process.exit(1);