🪻 distributed transcription service thistle.dunkirk.sh

chore: cleanup orphan files hourly

dunkirk.sh 58f6dc09 e11f0959

verified
Changed files
+2 -2
src
+2 -2
src/index.ts
···
5 * 60 * 1000,
);
-
// Clean up stale files daily
+
// Clean up stale files hourly
const fileCleanupInterval = setInterval(
() => whisperService.cleanupStaleFiles(),
-
24 * 60 * 60 * 1000,
+
60 * 60 * 1000, // 1 hour
);
const server = Bun.serve({