-
Notifications
You must be signed in to change notification settings - Fork 1
/
makeconf.json
40 lines (40 loc) · 1.18 KB
/
makeconf.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
{
"format": ".env",
"file": ".env",
"config": {
"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.",
"default": "*/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.",
"default": "NEURAL_NET",
"required": true
},
"GOOGLE_SUPPORT": {
"description": "Enable Actions on Google platform integration support.",
"default": true,
"required": true
},
"FACEBOOK_SUPPORT": {
"description": "Enable Facebook platform integration support.",
"default": true,
"required": true
},
"SLACK_SUPPORT": {
"description": "Enable Slack platform integration support.",
"default": true,
"required": true
},
"SPARK_SUPPORT": {
"description": "Enable Spark platform integration support.",
"default": true,
"required": true
}
}
}