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.
15 lines
623 B
15 lines
623 B
#数据库配置
|
|
|
|
#主数据库
|
|
master:
|
|
url_path: '127.0.0.1' #数据库地址
|
|
port: 3306 #数据库端口
|
|
name: 'app_database' #数据库名称
|
|
username: 'root' #数据库用户民
|
|
password: 'root' #数据库密码
|
|
charset: 'utf8mb4' #数据库编码方式
|
|
parseTime: 'True' #是否自动转换时间
|
|
loc: 'Local' #时区
|
|
max_idle_conns: 100 #最大空闲数量
|
|
max_open_conns: 1500 #最大打开数量
|
|
gorm_log: true #是否开启gorm日志
|
|
|