From fae1c7d91aae791f6eb1bcbcde1b387ff39777a0 Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sun, 5 Jan 2025 23:46:11 +0100 Subject: [PATCH] fix: update dockerfile --- lib/sqlite/sqlite.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sqlite/sqlite.ts b/lib/sqlite/sqlite.ts index d88ea3e..52ac97f 100644 --- a/lib/sqlite/sqlite.ts +++ b/lib/sqlite/sqlite.ts @@ -6,7 +6,7 @@ const DB_FILE = "file:" + path.resolve(DATA_DIR, "db.sqlite"); // You can specify any property from the libsql connection options export const db = drizzle({ - // logger: true, + logger: true, connection: { url: DB_FILE, },