From 9869e43c10da665a61bc5f7369e8a7ed614a26f2 Mon Sep 17 00:00:00 2001 From: Cristhian Zanforlin Lousa Date: Thu, 2 Oct 2025 10:31:15 -0300 Subject: [PATCH] chore: Exclude database files from debugger auto-reload (#10020) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🔧 (gitignore): update gitignore to exclude all files with .db extension or prefix 🔧 (.vscode/launch.json): update launch configuration to exclude all files with .db extension or prefix from hot reload --- .gitignore | 2 +- .vscode/launch.json | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 919e95c80e..a3e3c59189 100644 --- a/.gitignore +++ b/.gitignore @@ -276,7 +276,7 @@ src/frontend/temp .history .dspy_cache/ -*.db +*.db* *.mcp.json news-aggregated.json diff --git a/.vscode/launch.json b/.vscode/launch.json index 4c712cea2f..45349aaa86 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -21,7 +21,9 @@ "--reload-include", "./src/backend/*", "--reload-include", - "./src/lfx/*" + "./src/lfx/*", + "--reload-exclude", + "*.db*" ], "jinja": true, "justMyCode": false,