24 lines
780 B
Markdown
24 lines
780 B
Markdown
<img src="siren.png" alt="drawing" width="200"/>
|
|
|
|
# Siren
|
|
A D&D Bot built for Discord. Includes music support and assistant DM tools.
|
|
|
|
## Running
|
|
Visit the [Discord Developer Portal](https://discord.com/developers/applications) and create a new application.
|
|
Guides and more information are available [here](https://discord.com/developers/docs/intro).
|
|
|
|
## Contributing
|
|
Rust must be installed to run locally.
|
|
|
|
Furthermore, the following packages must be installed for [serenity-rs/songbird](https://github.com/serenity-rs/songbird)
|
|
```
|
|
sudo apt install libopus-dev
|
|
sudo apt install ffmpeg
|
|
sudo apt apt install youtube-dl
|
|
```
|
|
|
|
The application can instead be tested from within a docker container.
|
|
```
|
|
docker build -t siren .
|
|
docker run --env-file .env -it --rm --name siren siren
|
|
``` |