You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
362 B
11 lines
362 B
# MySQL数据库配置
|
|
# 请根据您的实际MySQL配置修改以下参数
|
|
|
|
MYSQL_CONFIG = {
|
|
"host": "localhost", # MySQL主机地址
|
|
"port": 3306, # MySQL端口
|
|
"user": "root", # MySQL用户名
|
|
"password": "123456", # MySQL密码
|
|
"database": "kg", # 数据库名
|
|
"charset": "utf8mb4" # 字符
|
|
}
|