From f3f2deea354e88ecbf869532bfb910be960641f9 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sun, 25 May 2025 15:39:47 +0200 Subject: [PATCH] Update default DBURL to use sqlite:// format in DefaultConfig --- server/internal/app/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/internal/app/config.go b/server/internal/app/config.go index e8ab943..3708935 100644 --- a/server/internal/app/config.go +++ b/server/internal/app/config.go @@ -34,7 +34,7 @@ type Config struct { // DefaultConfig returns a new Config instance with default values func DefaultConfig() *Config { return &Config{ - DBURL: "./lemma.db", + DBURL: "sqlite://lemma.db", DBType: db.DBTypeSQLite, WorkDir: "./data", StaticPath: "../app/dist",