-
Notifications
You must be signed in to change notification settings - Fork 36
/
config.js
71 lines (55 loc) · 1.69 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//服务器地址
var url = 'https://***.***.com/v1'
var attachmenturl = 'https://***.***.com'
// var url = 'http://localhost/v1'
// var attachmenturl = 'http://127.0.0.1'
//腾讯云对象存储鉴权地址
var cosSignatureUrl = '';
//腾讯云对象存储的区域:华东地区为sh
var cosRegion = '';
//腾讯云对象存储cos的APPID
var cosAPPID = '12XXXXXXXX';
//腾讯云COSSecretId
var cosSecretId = '';
//腾讯云COSSecretKey
var cosSecretKey = '';
//bucket
var cosBucketName = '';
//dir路径
var cosDirName = '';
module.exports = {
url: url,
attachmenturl: attachmenturl,
cosSignatureUrl: cosSignatureUrl,
cosRegion: cosRegion,
cosAPPID: cosAPPID,
cosBucketName: cosBucketName,
cosDirName: cosDirName
}
/**
* 小程序配置文件
*/
// 此处主机域名是腾讯云解决方案分配的域名
// 小程序后台服务解决方案:https://www.qcloud.com/solution/la
// var host = "14592619.qcloud.la"
// var config = {
// // 下面的地址配合云端 Server 工作
// host,
// // 登录地址,用于建立会话
// loginUrl: `https://${host}/login`,
// // 测试的请求地址,用于测试会话
// requestUrl: `https://${host}/testRequest`,
// // 用code换取openId
// openIdUrl: `https://${host}/openid`,
// // 测试的信道服务接口
// tunnelUrl: `https://${host}/tunnel`,
// // 生成支付订单的接口
// paymentUrl: `https://${host}/payment`,
// // 发送模板消息接口
// templateMessageUrl: `https://${host}/templateMessage`,
// // 上传文件接口
// uploadFileUrl: `https://${host}/upload`,
// // 下载示例图片接口
// downloadExampleUrl: `https://${host}/static/weapp.jpg`
// };
// module.exports = config