discord music bot
Go to file
Ramdip Gill d363960426 Merge branch '5-cd' into 'develop'
Add deploy job and script

Closes #5

See merge request ekzyis/musicube!12
2021-09-25 23:17:02 +00:00
.vscode Add debug configuration 2021-09-25 20:30:44 +02:00
src Improve error messages 2021-09-25 21:34:46 +02:00
test Use embeds 2021-09-25 21:30:52 +02:00
.dockerignore Create Dockerfile 2021-09-25 22:11:37 +02:00
.env.template Create Dockerfile 2021-09-25 22:11:37 +02: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 Fix pylint issues 2021-09-24 22:02:13 +02:00
Dockerfile Don't handle YOUTUBE_COOKIES different in Dockerfile 2021-09-25 22:48:16 +02:00
Makefile Add deploy job and deploy script 2021-09-26 01:10:52 +02: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 Add test for ensure_voice 2021-09-24 23:07:32 +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