discord music bot
Go to file
Ramdip Gill 550f36652b Merge branch '26-signature-extraction-failed' into 'develop'
Resolve "Signature extraction failed"

Closes #26

See merge request ekzyis/musicube!23
2022-04-14 23:19:23 +00:00
.vscode Set justMyCode to false 2022-04-15 00:58:32 +02:00
src Better user error messages for errors by youtubedl 2022-04-15 01:03:36 +02:00
test Fix pylint 2021-11-04 01:07:42 +01:00
.dockerignore Create Dockerfile 2021-09-25 22:11:37 +02:00
.env.template Add logging 2021-11-04 00:47:58 +01:00
.gitignore Add Makefile 2021-09-25 22:46:45 +02:00
.gitlab-ci.yml Add deploy job and deploy script 2021-09-26 01:10:52 +02:00
.pylintrc Disable fixme in .pylintrc 2021-11-15 21:18:54 +01:00
Dockerfile Add env vars to docker image 2021-11-04 00:59:52 +01:00
Makefile Add env vars to docker image 2021-11-04 00:59:52 +01:00
README.md Add deploy job and deploy script 2021-09-26 01:10:52 +02:00
deploy.sh Add deploy job and deploy script 2021-09-26 01:10:52 +02:00
pyproject.toml Copy code from basic_voice example as skeleton 2021-09-24 20:58:42 +02:00
requirements.txt Update youtube-dl to 2021.12.17 2022-04-15 01:18:01 +02:00

README.md

musicube

Development

Requirements:

$ python --version
3.9.7

Configure virtual environment:

$ python -m venv venv
$ source venv/bin/activate

Install requirements:

$ pip install -r requirements.txt

Configure ENV:

$ cp .env.template .env
# Write BOT_TOKEN into .env

Run bot:

$ python src/bot.py

Deployment

Requirements:

$ docker --version
Docker version 20.10.8, build 3967b7d28e
$ make --version
GNU Make 4.3
Built for x86_64-pc-linux-gnu
Copyright (C) 1988-2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Build image:

$ make build

Run image:

$ docker run --rm --detach --name musicube musicube:latest