mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-23 20:49:48 +08:00
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:
committed by
GitHub
parent
150dfa86bf
commit
9869e43c10
2
.gitignore
vendored
2
.gitignore
vendored
@ -276,7 +276,7 @@ src/frontend/temp
|
||||
.history
|
||||
|
||||
.dspy_cache/
|
||||
*.db
|
||||
*.db*
|
||||
*.mcp.json
|
||||
|
||||
news-aggregated.json
|
||||
|
||||
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
@ -21,7 +21,9 @@
|
||||
"--reload-include",
|
||||
"./src/backend/*",
|
||||
"--reload-include",
|
||||
"./src/lfx/*"
|
||||
"./src/lfx/*",
|
||||
"--reload-exclude",
|
||||
"*.db*"
|
||||
],
|
||||
"jinja": true,
|
||||
"justMyCode": false,
|
||||
|
||||
Reference in New Issue
Block a user