-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.template.json
43 lines (43 loc) · 1.22 KB
/
config.template.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
{
"DISCORD": {
"BOT_TOKEN": "<DISCORD_BOT_TOKEN>",
"PREFIX": "!",
"MAX_PREFIX_LENGTH": 3,
"EMBED": {
"DESC_CHAR_LIMIT": 2048,
"FIELD_CHAR_LIMIT": 1024,
"TITLE_CHAR_LIMIT": 256
}
},
"DATABASE": {
"PATH_TO_MIGRATION_FILES": "./lib/data/migrations"
},
"AUDIO_FILE_FORMAT": ".ogg",
"IMGUR": {
"AUTHORIZATION": "Client-ID <API_KEY>",
"URL": "https://api.imgur.com/3/gallery/t/meme/top/week/1"
},
"HACKERNEWS": {
"BASE_URL": "https://hacker-news.firebaseio.com/v0",
"BESTSTORIES": "/beststories",
"STORY": "/item/",
"URL_SUFFIX": ".json",
"COMMENT_URL": "https://news.ycombinator.com/item?id="
},
"URBAN": {
"URL": "https://api.urbandictionary.com/v0/define?"
},
"COCKTAIL": {
"BASE_URL": "https://www.thecocktaildb.com/api/json/",
"API_VERSION": "v1/",
"API_KEY": "1/",
"RANDOM_URL": "random.php",
"SEARCH_INGREDIENT": "filter.php?i=",
"SEARCH_LETTER_URL": "search.php?f=",
"SEARCH_URL": "search.php?s="
},
"MEME": {
"SYNC_AT_MIDNIGHT": "0 0 * * *",
"TABLE_NAME": "meme"
}
}