From 8ef1138c10bc751d1c5b5e150525a686067876ef Mon Sep 17 00:00:00 2001 From: Nikomiko Date: Thu, 29 Jan 2026 22:44:43 -0500 Subject: [PATCH] make the source file path a variable --- apps/vdb-backend/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/vdb-backend/src/index.ts b/apps/vdb-backend/src/index.ts index 2e04fa7..732530b 100644 --- a/apps/vdb-backend/src/index.ts +++ b/apps/vdb-backend/src/index.ts @@ -91,6 +91,7 @@ async function loadSheet() { await lemma_repository.clear(); await lect_repository.clear(); + const rawData: string = fs.readFileSync(SOURCE_FILE, 'utf8'); const rows: string[] = rawData.split('\n');