This is a gateway for Sonos wireless speakers and home sound systems.
- Python 3
- Pip 22.0.4
- Flask 2.2
To find a full list (incl. needed Versions) of required packages you can have a look into requirements.txt.
Create venv
python3 -m venv venvInstall needed packages with pip.
pip install -r requirements.txt# development environment
flask run
# production environment
cd src && gunicorn webapp:appRun Super-Linter locally to test your branch of code.
docker pull github/super-linter:v5
docker run --rm -e RUN_LOCAL=true -e USE_FIND_ALGORITHM=true -v "$PWD/src":/tmp/lint github/super-linter:v5