feat: add default database configuration for AppConfig and update example config

This commit is contained in:
JeffJiang
2026-04-26 20:46:45 +08:00
parent 7bf618de67
commit 35ef8b7c13
3 changed files with 61 additions and 2 deletions
+5 -1
View File
@@ -816,10 +816,14 @@ skill_evolution:
# Unified storage backend for LangGraph checkpointer and DeerFlow
# application data (runs, threads metadata, feedback, etc.).
#
# backend: memory -- No persistence, data lost on restart (default)
# backend: memory -- No persistence, data lost on restart
# backend: sqlite -- Single-node deployment, files in sqlite_dir
# backend: postgres -- Production multi-node deployment
#
# If this section is omitted or empty in config.yaml, DeerFlow uses:
# backend: sqlite
# sqlite_dir: .deer-flow/data
#
# SQLite mode uses a single deerflow.db file with WAL journal mode
# for both checkpointer and application data.
#