-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (47 loc) · 1.01 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
43
44
45
46
47
{
"name": "Export Salesforce Data to S3",
"description": "Dump Salesforce data to an S3 bucket using ro",
"keywords": [
"ro",
"salesforce",
"backups"
],
"repository": "https://github.com/octoberswimmer/salesforce-backups",
"website": "https://www.octoberswimmer.com/ro-backup/",
"buildpacks": [
{
"url": "https://github.com/ph3nx/heroku-binary-buildpack"
}
],
"env": {
"AWS_DEFAULT_REGION": {
"description": "AWS Regon",
"value": "us-west-2"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS Access Key Id"
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS Secret Access Key"
},
"S3_BUCKET": {
"description": "S3 Bucket Where Exports Should Be Stored"
},
"RO_USERNAME": {
"description": "Salesforce Username"
},
"RO_PASSWORD": {
"description": "Salesforce Password (with token, if needed)"
},
"RO_ENDPOINT": {
"description": "Salesforce Login Host",
"value": "login.salesforce.com"
}
},
"formation": {
"web": {
"quantity": 0,
"size": "eco"
}
}
}