26 lines
448 B
Plaintext
26 lines
448 B
Plaintext
# 测试环境变量配置
|
|
GO_ENV=test
|
|
|
|
# 数据库配置
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=3306
|
|
DB_USERNAME=root
|
|
DB_PASSWORD=test_password_123
|
|
DB_NAME=ai_dianshang_test
|
|
|
|
# Redis配置
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
REDIS_DB=1
|
|
|
|
# JWT配置
|
|
JWT_SECRET=test-jwt-secret-key-for-testing-only
|
|
JWT_EXPIRE=3600
|
|
|
|
# 日志配置
|
|
LOG_LEVEL=info
|
|
|
|
# 微信小程序配置
|
|
WECHAT_APP_ID=wx_test_app_id
|
|
WECHAT_APP_SECRET=test_app_secret_for_testing |