-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.json
50 lines (50 loc) · 1.66 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
{
"name": "Unsplash Chatbot",
"description": "Send Unsplash photos in Zoom Team Chat.",
"repository": "https://github.com/zoom/unsplash-chatbot",
"logo": "https://unsplash-assets.imgix.net/marketing/press-symbol.svg?auto=format&fit=crop&q=60",
"keywords": ["zoom", "chatbot", "unsplash", "node.js", "express"],
"addons": [
"heroku-postgresql"
],
"env": {
"UNSPLASH_ACCESS_KEY": {
"description": "Your Unsplash Access Key, it's the same for production and development, found on your Unsplash App Page",
"value": "",
"required": true
},
"ZOOM_CLIENT_ID": {
"description": "Your Zoom Production Client ID, found on your App's Credentials page",
"value": "",
"required": true
},
"ZOOM_CLIENT_SECRET": {
"description": "Your Zoom Production Client Secret, found on your App's Credentials page",
"value": "",
"required": true
},
"ZOOM_BOT_JID": {
"description": "Your Zoom Production Bot JID, found on your App's Features page",
"value": "",
"required": true
},
"ZOOM_WEBHOOK_SECRET_TOKEN": {
"description": "Your Zoom Webhook Secret Token, found on your App's Features page",
"value": "",
"required": true
},
"DATABASE_ENCRYPTION_KEY": {
"description": "An encryption key used to encrypt the data in your database. Treat this key secret, like a password",
"value": "",
"required": true
},
"DATABASE_ENCRYPTION_ALGO": {
"description": "An encryption algorithm used to encrypt your the data in your database",
"value": "aes256",
"required": true
}
},
"scripts": {
"postdeploy": "node ./seed.js"
}
}