-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
33 lines (33 loc) · 1.15 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
{
"name": "Tweet Relevance",
"description": "Fuzzy.ai Tweet Relevance Example",
"keywords": ["Fuzzy", "Fuzzy.ai", "ruby", "rails", "twitter"],
"website": "https://github.com/fuzzy-ai/tweet-relevance-rails",
"success_url": "/",
"env": {
"TWITTER_CONSUMER_KEY": {
"description": "Consumer Key (API Key) from your twitter app",
"required": true
},
"TWITTER_CONSUMER_SECRET": {
"description": "Consumer Secret (API Secret) from your twitter app",
"required": true
},
"TWITTER_ACCESS_TOKEN": {
"description": "Access Token from your twitter app",
"required": true
},
"TWITTER_ACCESS_SECRET": {
"description": "Access Token Secret from your twitter app",
"required": true
},
"FUZZY_API_KEY": {
"description": "API Key from your Fuzzy.ai dashboard.",
"required": true
},
"FUZZY_AGENT_ID": {
"description": "Agent ID from your tweet relevance agent: https://fuzzy.ai/agents/new/tweet-relevance",
"required": true
}
}
}