30 lines
724 B
Markdown
30 lines
724 B
Markdown
# Siren
|
|
A Java/Docker Discord music bot
|
|
|
|
## 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).
|
|
|
|
### OAuth2 URL Generator
|
|
The bot requires the following permissions/scopes:
|
|
- bot
|
|
- applications.commands
|
|
|
|
```
|
|
https://discord.com/api/oauth2/authorize?client_id=<Client ID>&permissions=1088840792896&scope=applications.commands%20bot
|
|
```
|
|
|
|
`docker build -t siren .`
|
|
`docker-compose up -d`
|
|
|
|
## Development
|
|
Build container
|
|
|
|
`docker build -t siren .`
|
|
|
|
Run container locally
|
|
|
|
```
|
|
docker container run --name siren_test -d -t siren bash
|
|
docker exec -it siren_test bash
|
|
``` |