From 7c5e6c7144ab487b2e9df00d0dd47cb00725f975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Thu, 8 Feb 2024 19:31:47 +0100 Subject: [PATCH] added install commands and gitignore json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- .gitignore | 1 + README.md | 17 ++++++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8c2b884..250d97d 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ # Built Visual Studio Code Extensions *.vsix +*.json \ No newline at end of file diff --git a/README.md b/README.md index 9745ca5..9c204fb 100644 --- a/README.md +++ b/README.md @@ -16,4 +16,19 @@ create user 'pxm'@'localhost' IDENTIFIED by 'pixel'; grant all privileges on pixeltube_db . * to 'pxm'@'localhost'; -flush privileges; \ No newline at end of file +flush privileges; + +# Install Flask for the web server +sudo apt-get install python3-flask + +# Install Flask-MySQLdb for MySQL integration with Flask +sudo apt-get install python3-flask-mysqldb + +# Install python-osc for handling Art-Net messages +sudo apt-get install python3-osc + +# Install neopixel library for controlling WS2812B LED strip +sudo apt-get install python3-rpi-ws281x python3-adafruit-circuitpython-neopixel + +# Install wifi library for Wi-Fi management +sudo apt-get install python3-wifi