🪻 distributed transcription service thistle.dunkirk.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: cleanup orphan files hourly

+2 -2
+2 -2
src/index.ts
··· 292 292 5 * 60 * 1000, 293 293 ); 294 294 295 - // Clean up stale files daily 295 + // Clean up stale files hourly 296 296 const fileCleanupInterval = setInterval( 297 297 () => whisperService.cleanupStaleFiles(), 298 - 24 * 60 * 60 * 1000, 298 + 60 * 60 * 1000, // 1 hour 299 299 ); 300 300 301 301 const server = Bun.serve({