readme and things
This commit is contained in:
parent
00022c1cb9
commit
9cab284d24
1
.dockerignore
Normal file
1
.dockerignore
Normal file
@ -0,0 +1 @@
|
|||||||
|
legacy/
|
22
README.md
Normal file
22
README.md
Normal 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
9
docker-compose.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user