From 57e594b65b73b708639849a87afee409ff05ebe7 Mon Sep 17 00:00:00 2001 From: "Satsuki Akiba (aider)" Date: Wed, 4 Jun 2025 16:03:38 +0900 Subject: [PATCH] feat: schedule initial and daily batch processes --- server.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server.ts b/server.ts index d38bc8e..df55c9d 100644 --- a/server.ts +++ b/server.ts @@ -171,5 +171,7 @@ serve( }, (info) => { console.log(`Server is running on http://localhost:${info.port}`); + // 初回実行 + scheduleFirstBatchProcess(); }, );