fix: Remove unnecessary ignore entries from ecosystem.config.cjs

This commit is contained in:
Alex Newman
2025-11-17 14:01:43 -05:00
parent a9ae89a198
commit 95edf31c14
+2 -10
View File
@@ -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'
]
}
]
};