From 038bf2649a4d7324d4c69f29400dd9ee27349006 Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Mon, 2 Feb 2026 21:39:16 -0600 Subject: [PATCH] Fix database path configuration - correct default path in Config class --- factsdb/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factsdb/config.py b/factsdb/config.py index 266272a..03070ce 100644 --- a/factsdb/config.py +++ b/factsdb/config.py @@ -36,7 +36,7 @@ class Config: def __init__(self): self.database = DatabaseConfig( - path=os.getenv('DATABASE_PATH', 'facts.db') + path=os.getenv('DATABASE_PATH', './facts.db') ) self.ai_endpoint = AIEndpointConfig(