"feat: Update dependencies in requirements.txt and installer script"

This commit is contained in:
2025-05-27 06:46:13 +02:00
parent 3867540cf4
commit 1d2580defd
3 changed files with 5 additions and 3 deletions

View File

@@ -13,7 +13,9 @@ Flask-Limiter==3.5.0
# Datenbank # Datenbank
SQLAlchemy==2.0.41 SQLAlchemy==2.0.41
# Smart Plug Steuerung # Smart Plug Steuerung (Tapo)
# HINWEIS: Version 0.1.2 ist die letzte stabile Version
# Version 0.1.4 hat bekannte Authentifizierungsprobleme mit neuerer Tapo-Firmware
PyP100==0.1.2 PyP100==0.1.2
# Passwort-Hashing # Passwort-Hashing

View File

@@ -20,7 +20,7 @@ requests==2.31.0
urllib3==2.0.4 urllib3==2.0.4
# Smart Plug Control (Tapo) # Smart Plug Control (Tapo)
PyP100==0.1.4 PyP100==0.1.2
# System Monitoring # System Monitoring
psutil==5.9.5 psutil==5.9.5

View File

@@ -1565,7 +1565,7 @@ start_application() {
if [ -d "$VENV_DIR" ]; then if [ -d "$VENV_DIR" ]; then
cd "$APP_DIR" cd "$APP_DIR"
source "$VENV_DIR/bin/activate" source "$VENV_DIR/bin/activate"
python app.py & python3.11 app.py &
echo -e "${GREEN}Backend-Server gestartet: https://localhost:443${NC}" echo -e "${GREEN}Backend-Server gestartet: https://localhost:443${NC}"
deactivate deactivate
cd "$PROJECT_DIR" cd "$PROJECT_DIR"