A cool lil music bot :)
First of all make sure you have python 3.10+
- Install poetry
- Configure IDE venv and poetry
- Install necessary packages using the command below
- Create
.envfile with required variables set (table below)
$ poetry installAll variables are required. (except either PGSQL_URL or other database env vars are required)
| Key | Description | Type |
|---|---|---|
| LL_ADDRESS | The lavalink address to conect the bot | str (must prefixed with http/https) |
| LL_PORT | The Lavalink address' port | int (default: 8000) |
| LL_PASSWORD | The password to authorize to ll server | str (default: "youshallnotpass") |
| PGSQL_URL | Special url to connect to postgres db. Use this or use other env vars | str (default: None) |
| USER | Database name to connect | str (default: music) |
| PASSWORD | Database password | str |
| HOST | Database host | str (default: 127.0.0.1) |
| PORT | Database port | int (default: 5432) |
| TOKEN | Bot's token | str |
Yall are free to open pr :3