-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
39 lines (39 loc) · 1.18 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
{
"name": "Salesforce CMS Showcase",
"description": "A front end for hosting content from Salesforce CMS",
"repository": "https://github.com/adamSellers/adams-fullstack-cms",
"env": {
"APPURL": {
"description": "The URL where this app is hosted, used in the callback resolution"
},
"CLIENTID": {
"description": "The Salesforce connected app client ID",
"value": "Please enter a value"
},
"CLIENTSECRET": {
"description": "The Salesforce connected app client secret",
"value": "Please enter a value"
},
"REDISSECRET": {
"description": "A super secret redis key",
"generator": "secret"
},
"SFLOGINURL": {
"description": "The login endpoint for Salesforce, can be swapped out with a community login string if required",
"value": "https://login.salesforce.com"
},
"MONGOATLAS_URI": {
"description": "The connection string for your mongo atlas DB",
"value": "please enter your mongo atlas connection string"
},
"API_VERSION": {
"description": "The Salesforce API version required (min v49)",
"value": "49.0"
}
},
"addons": [
{
"plan": "heroku-redis"
}
]
}