forked from FragSoc/esports-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecrets.template
More file actions
50 lines (45 loc) · 1.34 KB
/
secrets.template
File metadata and controls
50 lines (45 loc) · 1.34 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
## Discord Vars ##
# These variables are used to setup the actual Discord bot.
DISCORD_TOKEN=
COMMAND_PREFIX=!
UNKNOWN_COMMAND_EMOJI=⁉
LOGGING_PREFIX="[+]"
DEV_USER_IDS=
DEV_GUILD_ID=
##################
## Database Vars ##
# These are variables are used to define where your Database is stored and the login information.
# These are variables are required.
POSTGRES_HOST=
POSTGRES_USER=
POSTGRES_PASSWORD=
POSTGRES_DB=
PGADMIN_DEFAULT_EMAIL=
PGADMIN_DEFAULT_PASSWORD=
# This variable can be used to force the bot to use a specific DB. Must be a valid DB url, including protocol.
DB_OVERRIDE=
###################
## VCMusic Vars ##
# These variables are used in the VCMusic extension
MUSIC_DEFAULT_IMAGE=https://static.wixstatic.com/media/d8a4c5_b42c82e4532c4f8e9f9b2f2d9bb5a53e~mv2.png/v1/fill/w_287,h_287,al_c,q_85,usm_0.66_1.00_0.01/esportslogo.webp
GOOGLE_API=
###################
## TwitterTracker Vars ##
# These variables are used in the TwitterTracker extension.
TWITTER_CONSUMER_KEY=
TWITTER_CONSUMER_SECRET=
TWITTER_ACCESS_TOKEN=
TWITTER_ACCESS_TOKEN_SECRET=
###################
## UserRoles Vars ##
ROLE_SUFFIX=(Pingable)
INTERACTION_COOLDOWN=60
###################
## Extension Enable / Disable ##
ENABLE_VOICEADMIN=FALSE
ENABLE_EVENTTOOLS=FALSE
ENABLE_AUTOROLES=FALSE
ENABLE_VCMUSIC=FALSE
ENABLE_USERROLES=TRUE
ENABLE_TWITTERTRACKER=FALSE
###################