parent
2b0378feb3
commit
7c5e6c7144
|
@ -12,3 +12,4 @@
|
|||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
*.json
|
17
README.md
17
README.md
|
@ -16,4 +16,19 @@ create user 'pxm'@'localhost' IDENTIFIED by 'pixel';
|
|||
|
||||
grant all privileges on pixeltube_db . * to 'pxm'@'localhost';
|
||||
|
||||
flush privileges;
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue