44 lines
963 B
JavaScript
44 lines
963 B
JavaScript
/**
|
|
* 开发/测试环境配置
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
|
|
// ============================================
|
|
// 数据库配置(测试环境)
|
|
// ============================================
|
|
"db": {
|
|
"username": "wechat_admin",
|
|
"password": "YJEjLXnxJ3WraSiy",
|
|
"database": "wechat_admin",
|
|
"host": "101.132.75.138",
|
|
"port": 3306,
|
|
"dialect": "mysql"
|
|
},
|
|
|
|
// ============================================
|
|
// 微信配置(测试环境)
|
|
|
|
"aliyun": {
|
|
"accessKeyId": "LTAI5t7kYFnwxKMBUgdQLvVT",
|
|
"accessKeySecret": "TqXxL6rTYaXDg4RGOgCukyc9gWgl54",
|
|
"ossUrl": "https://bimwe.oss-cn-shanghai.aliyuncs.com",
|
|
"bucket": "bimwe",
|
|
|
|
},
|
|
"redis": {
|
|
"host": "101.132.75.138",
|
|
"port": "6379",
|
|
"pwd": "zc123"
|
|
},
|
|
"ai": {
|
|
"apiKey": "",
|
|
"baseUrl": "https://dashscope.aliyuncs.com/api/v1"
|
|
},
|
|
|
|
// 官方 API 上游地址(转发层目标)
|
|
"upstream_api_url": "http://113.44.162.180:7006",
|
|
}
|
|
|