From 95edf31c146e786f10fe3e95e891867b5b8f06e3 Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Mon, 17 Nov 2025 14:01:43 -0500 Subject: [PATCH] fix: Remove unnecessary ignore entries from ecosystem.config.cjs --- ecosystem.config.cjs | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs index 7686e94e..a1e36daf 100644 --- a/ecosystem.config.cjs +++ b/ecosystem.config.cjs @@ -31,16 +31,8 @@ module.exports = { '*.log', '*.db', '*.db-*', - '.git', - 'vector-db', // Ignore Chroma vector DB files - '.claude-mem' // Ignore data directory - ], - // Allow extra time for graceful shutdown (cleanup of child processes) - kill_timeout: 5000, - // Wait before restarting to allow full cleanup - wait_ready: true, - // Shutdown signal (SIGTERM for graceful shutdown) - kill_signal: 'SIGTERM' + '.git' + ] } ] };