-
Notifications
You must be signed in to change notification settings - Fork 67
/
app.json
62 lines (62 loc) · 1.71 KB
/
app.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
{
"name": "MV Online",
"description": "MV Online system created by Nelderson",
"repository": "https://github.com/Nelderson/MV_Online",
"logo": "https://i.imgur.com/I0fAzpx.png",
"keywords": ["node", "express", "static"],
"env": {
"MV_JWT_SECRET": {
"description": "A secret key for verifying the integrity of signed JSON Web Tokens.",
"generator": "secret"
},
"MV_FIRST_HASH": {
"description": "The first hash to pass all passwords through",
"generator": "secret"
},
"MV_TOKEN_EXPIRES_MIN": {
"description": "The amount of minutes before token expires (20160 = 14 Days)",
"value": "20160"
},
"MV_WORKER_COUNT" :{
"description": "The amount of workers the cluster will use",
"value": "4"
},
"MV_ENFORCE_ONE_USER" :{
"description": "Allow only one login per user",
"value": "false"
},
"MV_LOST_PASSWORD_COMPLEXITY" :{
"description": "Complexity of lost password (Default 2)",
"value": "2"
},
"MV_LOST_PASSWORD_EXPIRES" :{
"description": "Temporary Password Expiration in Milliseconds (3600000 = 1hr)",
"value": "3600000"
},
"MV_CHAT_ENABLE_LOGGING" :{
"description": "Enable logging on all chat windows",
"value": "false"
},
"MV_CHAT_PROFANITY_FILTER" :{
"description": "Enable profanity filter on all chat windows",
"value": "false"
},
"MV_METRICS_ANONYMOUS" :{
"description": "Make metrics anonymous",
"value": "false"
}
},
"addons": [
{
"plan": "mongolab:sandbox",
"as": "MV_MONGO"
},
{
"plan": "heroku-redis:hobby-dev",
"as": "MV_REDIS_HOST"
},
{
"plan": "sendgrid:starter"
}
]
}