-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathapp.json
More file actions
25 lines (25 loc) · 730 Bytes
/
app.json
File metadata and controls
25 lines (25 loc) · 730 Bytes
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
{
"name": "Salesforce Webhook Creator",
"description": "Create Webhooks on Salesforce",
"repository": "https://github.com/jamesward/salesforce-webhook-creator",
"website": "http://www.jamesward.com/",
"keywords": ["salesforce"],
"env": {
"APPLICATION_SECRET": {
"description": "A secret key for crypto and signed cookies.",
"generator": "secret"
},
"ASSETS_URL": {
"description": "The WebJar CDN URL",
"value": "//cdn.jsdelivr.net"
},
"FORCE_CONSUMER_KEY": {
"description": "The Salesforce OAuth Consumer Key",
"required": true
},
"FORCE_CONSUMER_SECRET": {
"description": "The Salesforce OAuth Consumer Secret",
"required": true
}
}
}