2025-05-26 21:38:46 +08:00
|
|
|
from pymysql.cursors import DictCursor
|
|
|
|
|
|
|
|
|
|
DATABASE_CONFIG = {
|
2025-07-27 21:37:28 +08:00
|
|
|
"host": "localhost",#"ragflow-mysql",#"localhost",
|
|
|
|
|
"port": 5455,#3306, #5455,
|
2025-05-26 21:38:46 +08:00
|
|
|
"user": "root",
|
|
|
|
|
"password": "infini_rag_flow",
|
|
|
|
|
"database": "rag_flow",
|
|
|
|
|
"cursorclass": DictCursor, # 返回字典格式结果
|
|
|
|
|
"charset": "utf8mb4",
|
|
|
|
|
"autocommit": True
|
|
|
|
|
}
|