forked from abisek/salesforce-elf-browser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
38 lines (37 loc) · 1.29 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
{
"name": "Salesforce ELF Browser",
"description": "A Salesforce connected web app to access and download Event Log Files ",
"repository": "https://github.com/abisek/salesforce-elf-browser",
"keywords": ["salesforce", "sfdc", "elf", "event log file", "download", "script"],
"env": {
"SALESFORCE_ELF_CONSUMER_KEY": {
"description": "Salesforce consumer key for production",
"required": true
},
"SALESFORCE_ELF_CONSUMER_SECRET": {
"description": "Salesforce consumer secret for production",
"required": true
},
"SALESFORCE_ELF_SANDBOX_CONSUMER_KEY": {
"description": "Salesforce consumer key for sandbox",
"required": true
},
"SALESFORCE_ELF_SANDBOX_CONSUMER_SECRET": {
"description": "Salesforce consumer secret for sandbox",
"required": true
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies",
"required": true,
"generator": "secret"
},
"ELF_MAX_DOWNLOAD_FILE_SIZE_IN_BYTES": {
"description": "The maximum size of file allowed via streaming download. Default is 5_000_000 (~5MB).",
"required": false
},
"ELF_GOOGLE_ANALYTICS_TRACKING_ID": {
"description": "Google Analytics tracking ID",
"required": false
}
}
}