12 lines
349 B
Python
12 lines
349 B
Python
from pymysql.cursors import DictCursor
|
|
|
|
DATABASE_CONFIG = {
|
|
"host": "localhost",#"ragflow-mysql",#"localhost",
|
|
"port": 5455,#3306, #5455,
|
|
"user": "root",
|
|
"password": "infini_rag_flow",
|
|
"database": "rag_flow",
|
|
"cursorclass": DictCursor, # 返回字典格式结果
|
|
"charset": "utf8mb4",
|
|
"autocommit": True
|
|
} |