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