added install commands and gitignore json

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-08 19:31:47 +01:00
parent 2b0378feb3
commit 7c5e6c7144
2 changed files with 17 additions and 1 deletions

1
.gitignore vendored
View File

@ -12,3 +12,4 @@
# Built Visual Studio Code Extensions
*.vsix
*.json

View File

@ -17,3 +17,18 @@ create user 'pxm'@'localhost' IDENTIFIED by 'pixel';
grant all privileges on pixeltube_db . * to 'pxm'@'localhost';
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