forked from Tiledesk/tiledesk-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
71 lines (71 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
{
"name": "Tiledesk Server",
"description": "Tildesk server",
"repository": "https://github.com/Tiledesk/tiledesk-server/new/master",
"logo": "https://tiledesk.com/wp-content/uploads/2018/03/tiledesk-logo.png",
"keywords": ["node", "express", "tiledesk", "live chat"],
"env": {
"FIREBASE_APIKEY": {
"description": "Firebase API key.",
"value": ""
},
"FIREBASE_AUTHDOMAIN": {
"description": "Firebase Auth domain.",
"value": ""
},
"FIREBASE_DATABASEURL": {
"description": "Firebase database url.",
"value": ""
},
"FIREBASE_STORAGEBUCKET": {
"description": "Firebase storage bucket.",
"value": ""
},
"FIREBASE_MESSAGINGSENDERID": {
"description": "Firebase messaging sender id.",
"value": ""
},
"FIREBASE_CLIENT_EMAIL": {
"description": "Firebase Client email.",
"value": ""
},
"FIREBASE_PRIVATE_KEY": {
"description": "Firebase private key.",
"value": ""
},
"FIREBASE_PROJECT_ID": {
"description": "Firebase project id.",
"value": ""
},
"CHAT21_ENABLED": {
"description": "Enable or disable Chat21 module.",
"value": "true"
},
"CHAT21_URL": {
"description": "The Chat21 server endpoint.",
"value": "https://us-central1-tiledesk-test.cloudfunctions.net"
},
"CHAT21_APPID": {
"description": "A unique identifier for your chat21 app.",
"value": "myAppId"
},
"WIDGET_LOCATION": {
"description": "Your widget url endpoint",
"value": "http://localhost:4200/"
},
"CHAT21_ADMIN_TOKEN": {
"description": "The Chat21 admin token.",
"value": "youradmintoken"
},
"SUPER_PASSWORD": {
"description": "Super admin password",
"value": "superpassword"
},
"MONGOOSE_AUTOINDEX": {
"description": "Autoindex",
"value": true
}
},
"image": "heroku/nodejs",
"addons": ["mongolab"]
}