28 lines
514 B
Go
28 lines
514 B
Go
# Server configuration.
|
|
server:
|
|
address: ":8000"
|
|
openapiPath: "/api.json"
|
|
swaggerPath: "/swagger"
|
|
|
|
# Logger configuration.
|
|
logger:
|
|
level : "all"
|
|
stdout: true
|
|
|
|
# Database configuration.
|
|
database:
|
|
logger:
|
|
level: "all"
|
|
stdout: true
|
|
default:
|
|
link: "mysql:root:MSms0427@tcp(127.0.0.1:3306)/dealxuetest?loc=Local&charset=utf8mb4"
|
|
debug: true
|
|
|
|
# Redis configuration.
|
|
redis:
|
|
default:
|
|
address: "127.0.0.1:6379"
|
|
|
|
# Casbin model
|
|
casbin:
|
|
modelPath: "./manifest/config/rbac_model.conf" |