-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
37 lines (37 loc) · 1.21 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
{
"name": "Ka-ze",
"description": "Demonstrates Heroku and Salesforce integration.",
"repository": "https://github.com/transcendent/ka-ze-rails-app",
"logo": "https://raw.githubusercontent.com/transcendent/ka-ze-rails-app/master/deploy_logo.png",
"keywords": ["Salesforce", "Rails", "Ka-ze"],
"success_url": "/",
"scripts": {
"postdeploy": "bundle exec rake db:migrate db:seed"
},
"env": {
"SALESFORCE_USERNAME": {
"description": "The username of the Salesforce user that will be used for API calls.",
"value": ""
},
"SALESFORCE_PASSWORD": {
"description": "The password of the above user.",
"value": ""
},
"SALESFORCE_SECURITY_TOKEN": {
"description": "The security token associated with the user.",
"value": ""
},
"SALESFORCE_CLIENT_ID": {
"description": "The Client ID of the connected application that was created in the Salesforce setup.",
"value": ""
},
"SALESFORCE_CLIENT_SECRET": {
"description": "The client secret of the connected application.",
"value": ""
},
"MAPBOX_ACCESS_TOKEN": {
"description": "The Mapbox key associated with the Mapbox account.",
"value": ""
}
}
}