mirror of
https://gitee.com/johng/gf
synced 2026-07-04 04:52:48 +08:00
27 lines
465 B
TOML
27 lines
465 B
TOML
|
|
# MySQL.
|
|
[database]
|
|
[database.logger]
|
|
Level = "all"
|
|
Stdout = true
|
|
CtxKeys = ["Trace-Id"]
|
|
[database.default]
|
|
link = "mysql:root:12345678@tcp(127.0.0.1:3306)/test"
|
|
debug = true
|
|
|
|
# Redis.
|
|
[redis]
|
|
default = "127.0.0.1:6379,0"
|
|
cache = "127.0.0.1:6379,1"
|
|
|
|
#[database]
|
|
# [[database.default]]
|
|
# type = "mysql"
|
|
# link = "root:12345678@tcp(127.0.0.1:3306)/test?parseTime=true&loc=Local"
|
|
#
|
|
|
|
|
|
|
|
|
|
|