forked from synzen/MonitoRSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
82 lines (82 loc) · 2.85 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "Discord.RSS",
"description": "Discord RSS bot with customizable feeds",
"website": "https://github.com/synzen/Discord.RSS",
"logo": "https://discordapp.com/assets/d36b33903dafb0107bb067b55bdd9cbc.svg",
"keywords": [
"discord",
"bot",
"rss",
"feed"
],
"addons": [{
"plan": "mongolab:sandbox"
},
{
"plan": "heroku-redis:hobby-dev"
}
],
"env": {
"DRSS_BOT_TOKEN": {
"description": "Discord BOT token. Get it here: https://discordapp.com/developers/applications/."
},
"DRSS_BOT_PREFIX": {
"description": "The prefix of your RSS feed bot. E.g. summoning the bot is done via ~rsshelp.",
"value": "~"
},
"DRSS_BOT_CONTROLLERIDS": {
"description": "Owner ID(s), separate multiple with a comma.",
"required": false
},
"DRSS_FEEDS_REFRESHRATEMINUTES": {
"description": "Refresh rate of your RSS feed bot.",
"value": "0.5"
},
"DRSS_FEEDS_DEFAULTMESSAGE": {
"description": "Default message. You can do role pings with <@DISCORD_ROLE_ID>.",
"value": ":newspaper: | **{title}**\n\n{link}\n\n{subscriptions}"
},
"DRSS_WEB_REDIRECTURI": {
"description": "Insert the domain name appending /authorize. Example on heroku: https://APPNAME.herokuapp.com/authorize. Make sure the exact url is also set set under the application OAuth2 tab under redirects.",
"required": false
},
"DRSS_WEB_CLIENTID": {
"description": "App ID that can be found on the general information page at https://discordapp.com/developers/applications/. This should only contain numbers.",
"required": false
},
"DRSS_WEB_CLIENTSECRET": {
"description": "Found on your app page at Discord Developers at https://discordapp.com/developers/applications/",
"required": false
},
"DRSS_WEB_ENABLED": {
"description": "WARNING! If you enable this, make sure that this value is \"true\" and you fill in all of the DRSS_WEB_ and have read the WIKI thoroughly. Make sure to NOT use worker, but instead always use WEB in the sources tab. Finally use something to keep your web dyno up like uptimerobot (free online software).",
"value": "false"
},
"DRSS_BOT_STATUS": {
"description": "Choose from online, idle, dnd or invisible.",
"value": "online"
},
"DRSS_BOT_ACTIVITYTYPE": {
"description": "Choose from PLAYING, LISTENING, STREAMING or WATCHING. Leave this blank if you don't want the bot to display a custom status.",
"required": false
},
"DRSS_BOT_ACTIVITYNAME": {
"description": "Displayed next to the activity type. Leave this blank if you don't want the bot to display a custom status.",
"required": false
},
"DRSS_BOT_STREAMURL": {
"description": "Stream URL for STREAMING activity. If you're not using the STREAMING activity type leave this blank.",
"required": false
}
},
"formation": {
"web": {
"quantity": 0,
"size": "free"
},
"bot": {
"quantity": 1,
"size": "free"
}
}
}