-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
38 lines (38 loc) · 1.54 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
{
"name": "Spark Broadcast Bot",
"description": "Spark Broadcast Bot: a Cisco Spark notification bot.",
"keywords": ["ciscospark", "chatbot", "botkit", "notifications"],
"repository": "https://github.com/AltusConsulting/Spark-Broadcast-Bot.git",
"env": {
"PUBLIC_URL": {
"description": "Internet facing URL where your bot can be reached."
},
"SPARK_TOKEN": {
"description": "The API access token of your Cisco Spark bot."
},
"ALLOWED_DOMAINS": {
"description": "A single domain or a comma-separated list of domains from which messages can be received by the bot, in format domain.com or domain1.com,domain2.com"
},
"ALLOWED_ADMIN": {
"description": "The Spark email address of the administrator."
},
"SECRET": {
"description": "Secret phrase used to verify authenticity of the Spark messages."
},
"CLIENT_ID": {
"description": "This is the client id obtained when creating the integration in Spark for Developers."
},
"CLIENT_SECRET": {
"description": "This is the client secret obtained when creating the integration in Spark for Developers."
},
"REDIRECT_URI": {
"description": "This is the URI where the user is redirected to after authentication"
},
"OAUTH_URL": {
"description": "This is the URL for the authentication with Cisco Spark"
}
},
"addons": [
"heroku-redis:hobby-dev"
]
}