/music-player

Primary LanguagePythonGNU Affero General Public License v3.0AGPL-3.0

Music Player

This project is a open source web music player with python / django.

Build Status Updates Python 3 codecov Maintainability

INSTALL UNIX

python3 -m venv .venv
source .venv/bin/activate
pip install -r requeriments-dev.txt

INSTALL WINDOWS

PY -3 -m venv .venv
.venv\Scripts\activate
pip install -r requeriments-dev.txt
pip install python-magic
pip install python-magic-bin

If you are in Microsoft Windows is necessary to copy the following DLL files to windows os folder C:\Windows\System32. If you using 64bits version of OS install lib python-magic-win64

pip install python-magic-win64

TESTS

flake8
pytest music_player --cov=music_player

Usage Unix

./manager makemigrations
./manager migrate
./manager runserver

Usage Windows

python manager makemigrations
python manager migrate
python manager runserver