@echo off REM WLED Screen Controller Startup Script REM This script starts the WLED screen controller server echo Starting WLED Screen Controller... echo. REM Change to the server directory (parent of scripts folder) cd /d "%~dp0\.." REM Start the server python -m uvicorn wled_controller.main:app --host 0.0.0.0 --port 8080 REM If the server exits, pause to show any error messages pause