-
Notifications
You must be signed in to change notification settings - Fork 0
/
appconfig.json
65 lines (65 loc) · 1.73 KB
/
appconfig.json
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
{
"app": {
"env": "DEV",
"host": "http://localhost:3000/",
"port": 8080,
"api": "http://localhost:81/api/",
"language": "zh",
"encryptKey": "hitchhikerapi",
"defaultPassword": "123456",
"encryptPassword": false,
"tempUser": "test@test.test",
"tempDelKey": "test",
"sync": false,
"syncInterval": 30,
"defaultHeaders": [
"Accept:*/*",
"User-Agent:Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36",
"Cache-Control:no-cache"
],
"requestTimeout": 1800000,
"scriptTimeout": 60000,
"safeVM": false,
"enableUpload": true,
"inviteMemberDirectly": true
},
"db": {
"host": "localhost",
"port": 3306,
"username": "root",
"password": "hitchhiker888",
"database": "hitchhiker"
},
"schedule": {
"duration": 60,
"storeUnit": "count",
"storeLimit": 50,
"storeContent": "forFail",
"pageSize": 20
},
"stress": {
"type": "node",
"storeMaxCount": 5,
"stressHost": "",
"stressPort": 11010,
"stressUpdateInterval": 1000
},
"user": {
"registerMailConfirm": false
},
"mail": {
"host": "http://email.hitchhiker-api.com/api/mail/",
"customType": "none",
"customApi": "http://",
"smtp": {
"host": "smtp.qq.com",
"port": 465,
"tls": true,
"user": "***@qq.com",
"pass": "****",
"from": "",
"nickname": "",
"rejectUnauthorized": false
}
}
}