This repository was archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathapp.json
More file actions
67 lines (67 loc) · 2.04 KB
/
app.json
File metadata and controls
67 lines (67 loc) · 2.04 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "Einstein Twitter Analyzer",
"description": "Sample application",
"env": {
"TWITTER_ACCESS_TOKEN": {
"description": "Your Twitter app access token",
"value":""
},
"TWITTER_ACCESS_TOKEN_SECRET": {
"description": "Your Twitter app access token secret",
"value":""
},
"TWITTER_CONSUMER_KEY": {
"description": "Your Twitter app consumer key",
"value":""
},
"TWITTER_CONSUMER_SECRET": {
"description": "Your Twitter app consumer secret",
"value":""
},
"TWITTER_TRACK": {
"description": "Comma separated list of words to track",
"value":""
},
"EINSTEIN_ACCOUNT_ID": {
"description": "Email address used to create Einstein account",
"value":""
},
"EINSTEIN_PRIVATE_KEY": {
"description": "Einstein account provate key",
"value":""
},
"EINSTEIN_SENTIMENT_MODEL": {
"description": "Einstein sentiment model id",
"value":"CommunitySentiment"
},
"EINSTEIN_INTENT_MODEL": {
"description": "Einstein intent model id",
"value":""
},
"EINSTEIN_VISION_MODEL": {
"description": "Einstein vision model id",
"value":""
},
"SF_CONSUMER_KEY": {
"description": "Consumer key of your Salesforce Connected App",
"value":""
},
"SF_CONSUMER_SECRET": {
"description": "Consumer secret of your Salesforce Connected App",
"value":""
},
"SF_USER_NAME": {
"description": "Salesforce username for your integration user",
"value":""
},
"SF_USER_PASSWORD": {
"description": "Salesforce password for your integration user",
"value":""
}
,
"SF_ENVIRONMENT": {
"description": "Salesforce environment. Enter production (for regular developer edition orgs) or sandbox (for scratch orgs)",
"value":"production"
}
}
}