-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
31 lines (31 loc) · 850 Bytes
/
app.json
File metadata and controls
31 lines (31 loc) · 850 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
26
27
28
29
30
31
{
"name": "Heroku Applink - Salesforce API Access (Node.js)",
"description": "A sample Node.js app demonstrating Salesforce API integration using Heroku Applink",
"repository": "https://github.com/heroku-reference-apps/heroku-applink-pattern-api-access-nodejs",
"logo": "https://cdn.rawgit.com/heroku/node-js-getting-started/main/public/node.svg",
"keywords": ["node", "express", "heroku", "salesforce", "integration", "api", "bulk-api"],
"image": "heroku/nodejs",
"env": {
"CONNECTION_NAMES": {
"description": "Comma-separated list of Salesforce connection names",
"required": true
}
},
"addons": [
{
"plan": "heroku-applink"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"environments": {
"test": {
"scripts": {
"test": "npm test"
}
}
}
}