27 lines
522 B
YAML
27 lines
522 B
YAML
# 服务层白盒测试专用配置(独立临时库,不提交运行数据)
|
|
# 运行方式: cd server && GF_GCFG_FILE=biz/service/testdata/config.yml go test ./biz/service/
|
|
server:
|
|
address: ":0"
|
|
|
|
database:
|
|
default:
|
|
type: sqlite
|
|
link: "sqlite::@file(testdata/observer_test.db)"
|
|
cache:
|
|
ttl: 30
|
|
|
|
auth:
|
|
secret: "test-auth-secret"
|
|
tokenTtl: 2592000
|
|
|
|
plans:
|
|
- id: day
|
|
days: 1
|
|
price_cents: 1000
|
|
- id: week
|
|
days: 7
|
|
price_cents: 5600
|
|
- id: month
|
|
days: 30
|
|
price_cents: 18000
|