-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
executable file
·60 lines (39 loc) · 1.27 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
/**
* 小程序配置文件
*/
// 此处主机域名是腾讯云解决方案分配的域名
// 小程序后台服务解决方案:https://www.qcloud.com/solution/la
var host = "57251387.dreamflyhaizei.com"
var app = "wedaka"
var FILE_REGION = 'tj';
var FILE_APPID = '1253272913';
var FILE_BUCKET_NAME = 'wedaka';
var config = {
service: {
// 下面的地址配合云端 Server 工作
host,
// 登录地址,用于建立会话
loginUrl: `https://${host}/${app}/login`,
//user
userUrl: `https://${host}/${app}/user`,
homeUrl: `https://${host}/${app}/home/`,
groupUrl: `https://${host}/${app}/group/`,
//profile
profileUrl: `https://${host}/${app}/profile/`,
//Feed
feedUrl: `https://${host}/${app}/feed/`,
//Target
targetUrl: `https://${host}/${app}/target/`,
//zaoqi
zaoqiUrl: `https://${host}/${app}/zaoqi/`,
settingUrl: `https://${host}/${app}/setting/`,
// cos 上传
cosUploadUrl: `https://${FILE_REGION}.file.myqcloud.com/files/v2/${FILE_APPID}/${FILE_BUCKET_NAME}`,
// 填写自己的鉴权服务器地址
cosSignUrl: `https://${host}/${app}/cosauth`,
// 短信url
smsUrl: `https://${host}/${app}/sms/`,
payUrl: `https://${host}/${app}/wxpay/`
}
};
module.exports = config