This repository has been archived by the owner on Sep 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
102 lines (98 loc) · 3.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "Clara",
"description": "A general-purpose NodeJS Discord bot",
"repository": "https://github.com/ClarityMoe/Clara",
"logo": "https://logos.speedtestcustom.com/prod/8380-1516204957824.png",
"addons": ["papertrail", "heroku-redis"],
"formation": {
"worker": {
"quantity": 1
}
},
"env": {
"CLARA_TOKENS_YOUTUBE": {
"description": "Token used for searching on YouTube.",
"required": false
},
"CLARA_TOKENS_SOUNDCLOUD": {
"description": "Token used for the SoundCloud API.",
"required": false
},
"CLARA_TOKENS_IBSEARCH": {
"description": "Token used for the IBSearch API.",
"required": false
},
"CLARA_TOKENS_OSU": {
"description": "Token used for the osu! API.",
"required": false
},
"CLARA_TOKENS_SAUCENAO": {
"description": "Token used for the SauceNAO API.",
"required": false
},
"CLARA_TOKENS_NASA": {
"description": "Token used for Nasa's APOD API.",
"required": false
},
"CLARA_TOKENS_TWITCH": {
"description": "Token used for the Twitch API.",
"required": false
},
"CLARA_BOTLIST_TOKENS_DBL": {
"description": "Token for sending stats to discordbots.org.",
"required": false
},
"CLARA_BOTLIST_TOKENS_DBOTS": {
"description": "Token for sending stats to bots.discord.pw.",
"required": false
},
"CLARA_DEVELOPMENT_DEBUG": {
"description": "Whether or not to print stack traces to the console.",
"required": false
},
"CLARA_DEVELOPMENT_PROMISE_WARNINGS": {
"description": "Whether or not to have warnings from Bluebird get printed.",
"required": false
},
"CLARA_GENERAL_OWNERID": {
"description": "ID of the bot owner. Used to run owner-only commands.",
"required": true
},
"CLARA_GENERAL_TOKEN": {
"description": "Token used to log into Discord with.",
"required": true
},
"CLARA_GENERAL_MAIN_PREFIX": {
"description": "Initial, static prefix of the bot.",
"required": true
},
"CLARA_GENERAL_MAXSHARDS": {
"description": "Maximum number of shards to run. Only change this if you have a really big bot.",
"value": "1"
},
"CLARA_DISCORD_STATUS": {
"description": "Presence to display on Discord.",
"value": "online"
},
"CLARA_DISCORD_GAME_URL": {
"description": "Twitch URL to show as streaming on Discord.",
"required": false
},
"CLARA_DISCORD_GAME_TYPE": {
"description": "Game type to use on Discord. Will be overriden if a URL is specified above.",
"value": "0"
},
"CLARA_DISCORD_GAME_NAME": {
"description:": "Name of the game to use on Discord. Supports variables {{version}}, {{guilds}}, {{channels}}, {{prefix}} and {{users}}.",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
]
}