-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
71 lines (71 loc) · 1.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "Chorus",
"description": "A Discord bot that allows for collective tweeting through reactions.",
"repository": "https://github.com/metalabel/chorus",
"logo": "",
"keywords": [
"node",
"discord",
"twitter",
"bot",
"tweet",
"reaction",
"chorus"
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"DISCORD_BOT_TOKEN": {
"description": "Your Discord bot token.",
"required": true
},
"TWITTER_CONSUMER_KEY": {
"description": "Your Twitter consumer key.",
"required": true
},
"TWITTER_CONSUMER_SECRET": {
"description": "Your Twitter consumer secret.",
"required": true
},
"TWITTER_ACCESS_TOKEN_KEY": {
"description": "Your Twitter access token key. Requires read and write permissions.",
"required": true
},
"TWITTER_ACCESS_TOKEN_SECRET": {
"description": "Your Twitter access token secret. Requires read and write permissions.",
"required": true
},
"DISCORD_CHANNELS": {
"description": "The Discord channels to listen to for reactions on messages. Add more than one channel by separating them with a comma.",
"required": true
},
"TWEET_REACTION_EMOJI": {
"description": "Reaction emoji for sending message as a tweet.",
"value": "❤️",
"required": true
},
"TWEET_REACTION_THRESHOLD": {
"description": "Reaction threshold for sending a message as a tweet.",
"value": "5",
"required": true
},
"TWEET_SUCCESS": {
"description": "Reaction emoji for tweets that have been sent successfully.",
"value": "✅",
"required": true
},
"TWEET_ERROR": {
"description": "Reaction emoji for tweets that have encountered an error.",
"value": "❌",
"required": true
},
"RESPOND_WITH_LINK": {
"description": "Respond to the original message with a link to the successfully published tweet.",
"value": true,
"required": true
}
}
}