forked from lxh/go-wxhelper
16 lines
468 B
Plaintext
16 lines
468 B
Plaintext
|
# 数据库配置
|
||
|
database:
|
||
|
type: mysql # 使用的数据库类型,可选 mysql | postgresql
|
||
|
host: mysql # 数据库地址(使用docker-compose启动可以不用改)
|
||
|
port: 3306 # 数据库端口
|
||
|
username: pixiu # 数据库用户名
|
||
|
password: pixiu # 数据库密码
|
||
|
database: pixiu # 数据库名
|
||
|
|
||
|
# Redis配置
|
||
|
redis:
|
||
|
host: redis # Redis地址(使用docker-compose启动可以不用改)
|
||
|
port: 6379 # Redis端口
|
||
|
password: mNhgeSk32fUf69C6
|
||
|
db: 0
|