This is a fork of the original EvoBot, a Discord Music Bot built with TypeScript, discord.js & uses Command Handler from discordjs.guide. This version includes enhancements and additional features to improve user experience and functionality.
Thank you for your support in helping us develop and maintain this bot. We greatly appreciate your understanding and contributions.
If you like this project, consider making a donation. Donate π
You can still choose the amount you wish to donate; every contribution is welcome and appreciated. Thank you for your generosity!
- Discord Bot Token Guide
1.1. Enable 'Message Content Intent' in Discord Developer Portal - Spotify Client ID & Secret *-> can be requested at Spotify Developer Dashboard
- Node.js 16.11.0 or newer
git clone https://github.com/bnfone/discord-bot-evomusic # Clone the forked repository
cd discord-bot-evomusic
npm install
After installation finishes, follow the configuration instructions and then run npm run start
to start the bot.
Copy or Rename config.json.example
to config.json
and fill out the values:
{
"TOKEN": "", // Your Discord Bot Token
"SPOTIFY_CLIENT_ID": "", // Your Spotify Client ID
"SPOTIFY_CLIENT_SECRET": "", // Your Spotify Client Secret
"MAX_PLAYLIST_SIZE": 10,
"PRUNING": false,
"LOCALE": "en",
"DEFAULT_VOLUME": 100,
"STAY_TIME": 30
}
For those who would prefer to use our Docker container, you may provide values from config.json
as environment variables.
docker run -e TOKEN=your_discord_bot_token -e SPOTIFY_CLIENT_ID=your_spotify_client_id -e SPOTIFY_CLIENT_SECRET=your_spotify_client_secret ghcr.io/bnfone/discord-bot-evomusic:latest -d
Docker Compose
version: '3.8'
services:
discord_music_bot:
image: ghcr.io/bnfone/discord-bot-evomusic:latest
container_name: discord_music_bot
environment:
- TOKEN=your_discord_bot_token
- SPOTIFY_CLIENT_ID=your_spotify_client_id
- SPOTIFY_CLIENT_SECRET=your_spotify_client_secret
restart: always
- πΆ Play music from YouTube, Spotify, and Apple Music via URL
- π Play music using search queries
- π Play YouTube, Spotify, and Apple Music playlists via URL
- π Search and select music to play
- ποΈ Volume control, queue system, loop/repeat, shuffle, and more
- π€ Display lyrics for the playing song
- βΈοΈ Pause, resume, skip, and stop music playback
- π± Media Controls via Buttons
- π Supports multiple locales
Note: For Spotify and Apple Music integration, the bot converts the provided links to YouTube links before playing, ensuring compatibility and a broader range of music availability. The Odesli.co API is used for that.
This fork supports additional locales. For a complete list, please refer to the original repository. If you want to contribute by adding new locales, please check the contributing section.
- Clone your fork:
git clone https://github.com/bnfone/discord-bot-evomusic.git
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
cz
ORnpm run commit
(Avoid usinggit commit
directly) - Push to the branch:
git push origin my-new-feature
- Submit a pull request to the original repository and mention that it's for the forked version.
Note: This fork is maintained separately from the original EvoBot. For changes specific to this fork, ensure to target the correct repository when submitting pull requests or issues.