Go to file
2021-08-13 15:16:21 +02:00
.github/workflows add build CI 2021-05-22 18:49:24 +02:00
src Remove unused decoder from tests 2021-08-13 15:16:21 +02:00
.gitignore Add first working build. 2021-05-10 00:27:18 +02:00
Cargo.lock Update dependencies 2021-08-13 15:12:08 +02:00
Cargo.toml Update dependencies 2021-08-13 15:12:08 +02:00
credentials.example.toml Typos & docs 2021-05-22 18:42:17 +02:00
LICENSE_AGPL.txt Add license 2021-05-22 18:27:01 +02:00
README.md Cleanup and docs 2021-08-13 15:11:59 +02:00

Teamspeak3 <-> Discord Voice Bridge

Requires your own discord bot token.

This software is in an MVP status, use at your own risk, like always.

Building

get rust compiler with cargo

Then run cargo build --release .exe/elf is inside target/release/ You can also run cargo run --release instead to directly build & execute the resulting binary.

Starting

Setup your credentials inside .credentials.toml by copying credentials.example.toml

Then join a voice channel in discord, type ~join in a text channel the bot can access. The teamspeak side should already be connected based on your config.

Debugging

To enable backtrace you can set the RUST_BACKTRACE environment variable like so: On linux run with RUST_BACKTRACE=1 (so RUST_BACKTRACE=1 cargo run --release) On windows execute $Env:RUST_BACKTRACE='1' in your powershell (I recommend windows terminal). Then run the binary from there, see above.

Logging can be controlled via RUST_LOG=<value> environment variable with <value> being one of error, warn, info, debug, trace. See above for setting it.

License

voice_bridge is primarily distributed under the terms of the AGPL license (Version 3.0). Libraries specified by the cargo.toml and code annotated otherwise is copyright by their respective authors.

See LICENSE-AGPL details.