-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
67 lines (67 loc) · 1.74 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
{
"name": "EZNet",
"description": "A chatbot interface for retrieving Meraki network data and analysis with natural language!",
"repository": "https://github.com/tejashah88/eznet",
"logo": "https://blog.algosec.com/wp-content/uploads/globe.jpg",
"keywords": [
"cisco",
"spark",
"webex",
"facebook",
"messenger",
"slack",
"google",
"assistant",
"meraki",
"dialogflow",
"api.ai",
"chatbot",
"voicebot",
"nodejs",
"meraki-dashboard"
],
"env": {
"MERAKI_API_KEY": {
"description": "The API token from the Meraki Dashboard.",
"required": true
},
"CACHE_CRON_JOB_STRING": {
"description": "The cron string for controlling often should the cache be refreshed.",
"value": "*/15 * * * *",
"required": true
},
"CANCEL_DETECTION_TYPE": {
"description": "The cancel detection type for handling cancelling slot-filling when being prompted to enter an org/network. Cna be FUZZY or NEURAL_NET.",
"value": "NEURAL_NET",
"required": true
},
"GOOGLE_SUPPORT": {
"description": "Enable Actions on Google platform integration support.",
"value": "true",
"required": true
},
"FACEBOOK_SUPPORT": {
"description": "Enable Facebook platform integration support.",
"value": "true",
"required": true
},
"SLACK_SUPPORT": {
"description": "Enable Slack platform integration support.",
"value": "true",
"required": true
},
"SPARK_SUPPORT": {
"description": "Enable Spark platform integration support.",
"value": "true",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"addons": [
"heroku-redis:hobby-dev"
]
}