forked from sdelements/lets-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
22 lines (22 loc) · 647 Bytes
/
Copy pathapp.json
File metadata and controls
22 lines (22 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "Let's Chat",
"description": "Self-hosted chat app for small teams",
"repository": "https://github.com/sdelements/lets-chat",
"addons": [
"mongolab"
],
"env": {
"NODE_ENV": {
"description": "Configures Express for production",
"value": "production"
},
"LCB_SECRETS_COOKIE": {
"description": "Session cookies are signed with this secret to prevent tampering",
"generator": "secret"
},
"LCB_FILES_ENABLE": {
"description": "Toggles file upload functionality",
"value": "false"
}
}
}