-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
42 lines (42 loc) · 1.61 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
{
"name": "Salesforce bot for Cisco Spark",
"description": "Salesforce bot for Cisco Spark",
"repository": "https://github.com/asynchrony/spark-botkit-salesforce",
"addons": [],
"env": {
"public_address": {
"description": "The address at which your bot can be reached. The public address of your Heroku app will be 'https://<App Name>.herokuapp.com",
"required": true
},
"access_token": {
"description": "The bot's access token from Cisco Spark. Create a new bot account at https://developer.ciscospark.com/add-bot.html if you do not have one.",
"required": true
},
"secret": {
"description": "A secret for validating that incoming webhooks originate from Cisco Spark.",
"required": true
},
"port": {
"description": "Port that the bot will run on",
"value": "3000",
"required": false
},
"base_url": {
"description": "The URL to your Salesforce instance.",
"required": true
},
"salesforce_username": {
"description": "The username of the account used to authenticate with Salesforce. Changes made to Salesforce will be performed by this user, so you may want to create a special bot account.",
"required": true
},
"salesforce_password": {
"description": "The password of the account used to authenticate with Salesforce.",
"required": true
},
"salesforce_security_token": {
"description": "The security token of the account used to authenticate with Salesforce.",
"required": true
}
},
"keywords": ["spark", "cisco", "ciscospark", "salesforce", "bot", "botkit", "node"]
}