-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
37 lines (28 loc) · 950 Bytes
/
.env.example
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
# String, optional (defaults to localhost)
# Endpoint of the host which has the database.
# Note: only used in dev environments.
DBHost=localhost
# Integer, optional (defaults to 3306)
# The port to connect to the database on.
DBPort=3306
# String, required.
# The password to log into the user on the database.
DBPass=root
# Boolean, optional (defaults to false)
# Synchronises the database schema to the code. Could make damaging changes.
DBSync=false
# String, required.
# The API key of the discord bot account to log into.
DiscordToken=TOKEN_HERE
# String, required.
# The discord account ID of the bot.
DiscordClient=ID_HERE
# String, required.
# The admin account's ID.
DiscordAdmin=ID_HERE
# String, required.
# The ID of the guild to administrate the account in.
DiscordAdminGuild=ID_HERE
# Boolean, optional (defaults to true)
# Updates the command on the administrative discord guild with what's in code.
DiscordSyncCommands=false