forked from PhunStyle/FurBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js.example
More file actions
86 lines (66 loc) · 2.92 KB
/
config.js.example
File metadata and controls
86 lines (66 loc) · 2.92 KB
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
module.exports = {
// *Required* Prefix for commands.
PREFIX: '!',
// *Required* Bot token. Can be found in your bots application page.
// https://discordapp.com/developers/applications/me
TOKEN: '',
// *Required* Bot client ID. Can be found in your bots application page.
// https://discordapp.com/developers/applications/me
CLIENT_ID: '',
// *Required* Owner ID. Can be found by enabling developer mode in discord
// Right clicking your profile and selecting 'Copy ID'.
OWNER_ID: '',
// *Required* Redis URL
// Learn more here. http://redis.io/topics/quickstart
REDIS_URL: '',
// *Required* Time to wait between commands per user in seconds. Default is 1.
MESSAGE_TTL: '1',
// RethinkDB details. Required for database stuff.
// Learn more here. https://www.rethinkdb.com/docs/quickstart/
// DB_USER: '',
// DB_PASS: '',
// DB_HOST: '',
// DB_PORT: '',
// Youtube API key, used for searching videos with `!youtube`.
// Learn more here. https://developers.google.com/youtube/v3/getting-started
YOUTUBE_KEY: '',
// Imgflip username and password, used for creating memes with `!meme`.
// Create an account here. https://imgflip.com
IMGFLIP_USERNAME: '',
IMGFLIP_PASSWORD: '',
// Champion.gg API key, used for the League of Legends `!lol` commands.
// Create a key here. http://api.champion.gg
CHAMPIONGG_KEY: '',
// Riot's API key, used for player and match search commands.
// BE WARNED, a development key will be very limited and most of the time will not work,
// as there is a lot of requests made in order to complete these data sets.
RIOT_KEY: '',
// Mashape API key, used to query Mashape to get HearthStone card data.
// You can acquire a Mashape API account here. https://market.mashape.com/
MASHAPE_KEY: '',
// Wolfram Alpha API key, used to query Wolfram Alpha with `!wolfram`.
// Apply for a key here. http://products.wolframalpha.com/developers
WOLFRAM_KEY: '',
// PasteBin API key, used to create pastes with `!paste`.
// Get a key here. http://pastebin.com/api
PASTEBIN_KEY: '',
// Popkey API key, used for searching GIFs with `!popkey`.
// Apply for a key here. http://popkey.co/api/submit
POPKEY_KEY: '',
// Random.org API key, used for getting random numbers and strings with `!random`.
// Get a key here. https://api.random.org/api-keys
RANDOM_KEY: '',
// Cleverbot API key, used for talking with `!chat`.
// Get a key here. https://www.cleverbot.com/api
CLEVERBOT_KEY: '',
// Carbon and Discord Bots key, used for displaying server count on specific websites.
// More information here. https://www.carbonitex.net/discord/bots & https://bots.discord.pw/api
CARBON_KEY: '',
DBOTS_KEY: '',
// DerpiBooru API Key, used for derpibooru image searching.
DERPIBOORU_KEY: '',
// DarkSky API key, used for weather reports.
DARKSKY_KEY: '',
// Feedback Channel ID, used for storing feedback with `!feedback`.
FEEDBACK_CHANNEL_ID: ''
};