02cd9d519c
Lint & Test / test (push) Successful in 1m56s
- Rename Python package: wled_controller -> ledgrab - Rename env var prefix: WLED_ -> LEDGRAB_ (with auto-migration for old vars) - Rename localStorage key: wled_api_key -> ledgrab_api_key (with migration) - Rename HA integration domain: wled_screen_controller -> ledgrab - Update all imports, build scripts, Docker, installer, config, docs - Remove HA integration (moved to ledgrab-haos-integration repo) - Remove hacs.json (belongs in HA repo now) - Add startup warning for users with old WLED_ env vars - All tests pass (715/715), ruff clean, tsc clean, frontend builds
16 lines
311 B
Batchfile
16 lines
311 B
Batchfile
@echo off
|
|
REM LedGrab Startup Script
|
|
REM This script starts the WLED screen controller server
|
|
|
|
echo Starting LedGrab...
|
|
echo.
|
|
|
|
REM Change to the server directory (parent of scripts folder)
|
|
cd /d "%~dp0\.."
|
|
|
|
REM Start the server
|
|
python -m ledgrab
|
|
|
|
REM If the server exits, pause to show any error messages
|
|
pause
|