Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,11 @@ VERIFIED_CHANNEL_ID=your_verified_channel_id_here
# MongoDB connection URL
MONGODB_URL=your_mongodb_url_here

# Log channel ID
GUILD_LOG=1258203464035729448

# Total Shards default "auto"
SHARDS=auto

# Server port
PORT=8233
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,15 @@ NODES='[{"host":"0.0.0.0","port":2333,"password":"your_lavalink_password","secur
```dotenv
# Analytics channel ID
ANALYTIC_CHANNEL_ID=your_analytic_channel_id_here

# Log channel ID
GUILD_LOG=your_guilds_log_channel_id_here
```

**Shards**
```dotenv
# Total Shards default "auto"
SHARDS=auto
```

**MongoDB**
Expand Down Expand Up @@ -107,6 +116,8 @@ docker run -d --restart always \
-e NODES='[{"host":"0.0.0.0","port":2333,"password":"your_lavalink_password","secure":false}]' \
-e ANALYTIC_CHANNEL_ID=your_analytic_channel_id_here \
-e MONGODB_URL=your_mongodb_url_here \
-e GUILD_LOG=your_log_channel_id_here \
-e SHARDS=auto \
-e PORT=8233 \
-p 8233:8233 \
hewkawar/hstudio-bot:latest
Expand Down