Find a file
2026-05-26 20:35:18 +01:00
.cargo Add ARM64 docker container and fix tokio-console 2025-07-22 11:11:15 +01:00
.github/workflows Update dependencies for production EE2E 2026-03-02 19:20:39 +00:00
src Get rid of unnecessary ring crypto library 2026-05-24 20:12:50 +01:00
tts_commands Split PageCursor out of VoicePaginator 2026-05-26 20:35:18 +01:00
tts_core Get rid of unnecessary ring crypto library 2026-05-24 20:12:50 +01:00
tts_events Remove admin bypass to required_role setting 2026-04-24 20:36:08 +01:00
tts_migrations Get rid of unnecessary ring crypto library 2026-05-24 20:12:50 +01:00
tts_tasks Reduce memory usage by dropping more cache fields 2026-04-19 09:14:28 +01:00
.dockerignore Fix dockerignore 2025-06-10 15:13:58 +01:00
.gitattributes Added .gitattributes to ensure that all future commits use LF 2022-01-10 10:13:54 +11:00
.gitignore Implement tokio-console 2025-06-07 15:23:06 +01:00
Cargo.lock Split PageCursor out of VoicePaginator 2026-05-26 20:35:18 +01:00
Cargo.toml Split PageCursor out of VoicePaginator 2026-05-26 20:35:18 +01:00
clippy.toml Double check that Songbird and cache state are in sync in /join 2025-07-01 16:12:17 +01:00
config-docker.toml Update config examples 2026-04-11 16:37:35 +01:00
config-selfhost.toml Update config examples 2026-04-11 16:37:35 +01:00
docker-compose-example.yml GnomedDev/Discord-TTS-Bot -> Discord-TTS/Bot 2022-10-05 14:30:33 +01:00
flake.lock Split PageCursor out of VoicePaginator 2026-05-26 20:35:18 +01:00
flake.nix Split PageCursor out of VoicePaginator 2026-05-26 20:35:18 +01:00
LICENSE Change line seperators to LF 2022-01-10 10:12:48 +11:00
README.md GnomedDev/Discord-TTS-Bot -> Discord-TTS/Bot 2022-10-05 14:30:33 +01:00

TTS Bot - Rust Rewrite

Text to speech Discord Bot using Serenity, Songbird, and Poise

Setup Guide:

Easy (Public Bot):

  • Invite the bot with this invite
  • Run -setup #text_channel_to_read_from
  • Run -join in that text channel, while being in a voice channel
  • Type normally in the setup text channel!

Normal (Docker):

  • Make sure docker, docker-compose, and git are installed

  • Run git clone https://github.com/Discord-TTS/Bot.git

  • Rename config-docker.toml to config.toml and fill it out

  • Rename docker-compose-example.yml to docker-compose.yml and fill it out

  • Rename Dockerfile-prod OR Dockerfile-dev to Dockerfile (prod takes longer to build, dev is less efficient to run)

  • Build and run the docker containers with docker-compose up --build -d

  • Check the terminal output with docker-compose logs bot

  • Now the bot is running in the container, and you can use it!

Hard (Self Host):

  • Make sure rust nightly, cargo, git, postgresql, and ffmpeg are installed

  • Run git clone https://github.com/Discord-TTS/Bot.git

  • Rename config-selfhost.toml to config.toml and fill it out

  • Run cargo build --release

  • Run the produced exe file in the /target/release folder

  • Now the bot is running in your terminal, and you can use it!