add event clustering feature to group articles by similarity and time proximity

This commit is contained in:
ImBenji
2026-04-21 12:45:22 +01:00
parent cb819e77ee
commit 3c238fb5f7
8 changed files with 239 additions and 102 deletions
+2
View File
@@ -3,6 +3,7 @@ const cors = require('@fastify/cors');
const articleRoutes = require('./src/routes/articles');
const statusRoutes = require('./src/routes/status');
const sourcesRoutes = require('./src/routes/sources');
const eventRoutes = require('./src/routes/events');
const config = require('./src/config');
const { startScheduler } = require('./src/scheduler');
@@ -12,6 +13,7 @@ app.register(cors, { origin: true });
app.register(articleRoutes);
app.register(statusRoutes);
app.register(sourcesRoutes);
app.register(eventRoutes);
app.get('/', async () => ({ ok: true }));