Skip to content

Commit 5496f52

Browse files
committed
Update env example
1 parent 131df98 commit 5496f52

File tree

1 file changed

+43
-4
lines changed

1 file changed

+43
-4
lines changed

.env.example

Lines changed: 43 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
1+
# Your Discord bot token
12
TOKEN=MyBotToken
2-
LOG_URL=https://logviewername.herokuapp.com/
3-
GUILD_ID=1234567890
4-
OWNERS=Owner1ID,Owner2ID,Owner3ID
5-
CONNECTION_URI=mongodb+srv://mongodburi
3+
4+
# ID of your Discord server
5+
GUILD_ID=123456
6+
7+
# ID of the server the thread channels will be created in
8+
# MODMAIL_GUILD_ID=123456
9+
10+
# Discord ID of the owners
11+
OWNERS=123456,123456
12+
13+
# Connection URI for your mongodb
14+
CONNECTION_URI=mongod+srv://mongo.net
15+
16+
# The url of logviewer for viewing self-hosted logs
17+
# LOG_URL=https://logviewername.domain.com/
18+
19+
# The path to your log viewer extending from your `LOG_URL`, defaults to "/logs"
20+
# LOG_URL_PREFIX=/logs
21+
22+
# A github personal access token with the repo scope to access private repository
23+
# GITHUB_TOKEN=abcdef
24+
25+
# If set to true, only plugins that are in the registry can be loaded
26+
# REGISTRY_PLUGINS_ONLY=false
27+
28+
# Client ID for your application, used by logviewer`
29+
# OAUTH2_CLIENT_ID=12345
30+
31+
# Client Secret for your application, used by logviewer
32+
# OAUTH2_CLIENT_SECRET=abcdef
33+
34+
# The redirect URL for logviewer OAuth. You must also add this URL in your application's Redirects section
35+
# OAUTH2_REDIRECT_URI=https://logviewername.herokuapp.com/callback
36+
37+
# The host address logviewer will bind itself to. Defaults to 0.0.0.0
38+
# HOST=0.0.0.0
39+
40+
# The port logviewer plugin will listen to. Defaults to 8000
41+
# PORT=8000
42+
43+
# The number of logs to display per page on logviewer. Defaults to 25
44+
# LOGVIEWER_PAGINATION=25

0 commit comments

Comments
 (0)