readme and things

This commit is contained in:
José Henrique Ivanchechen 2023-02-15 23:31:01 -03:00
parent 00022c1cb9
commit 9cab284d24
3 changed files with 32 additions and 0 deletions

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
legacy/

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# KasBot
#### Inspired by a Brazilian DJ
## Running
If using Docker, just put a token on the `docker-compose.yml` file and run it using `docker-compose up -d`.
If deploying it by hand, you can run:
```shell
dotnet build -c Release -o bin
dotnet bin/Kasbot.dll
```
## Commands
| Command | Description
| -- | -- |
| `!play <url/text>` | Plays a song from YouTube |
| `!skip` | Skips the current song |
| `!stop` | Stops the current song and clears the queue |
| `!leave` | Leaves the current voice channel and clears the queue |
| `!cat` | Sends a random cat pic into the channel :3 |
You can change the command prefix by putting another symbol in `COMMAND_PREFIX` environment variable.

9
docker-compose.yml Normal file
View File

@ -0,0 +1,9 @@
version: "2.1"
services:
kasbot:
image: ivanch/kasbot:latest
container_name: kasbot
environment:
- TOKEN=<Your bot token here>
- COMMAND_PREFIX=!
restart: unless-stopped