chore: Exclude database files from debugger auto-reload (#10020)

🔧 (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
This commit is contained in:
Cristhian Zanforlin Lousa
2025-10-02 10:31:15 -03:00
committed by GitHub
parent 150dfa86bf
commit 9869e43c10
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -276,7 +276,7 @@ src/frontend/temp
.history
.dspy_cache/
*.db
*.db*
*.mcp.json
news-aggregated.json

4
.vscode/launch.json vendored
View File

@ -21,7 +21,9 @@
"--reload-include",
"./src/backend/*",
"--reload-include",
"./src/lfx/*"
"./src/lfx/*",
"--reload-exclude",
"*.db*"
],
"jinja": true,
"justMyCode": false,