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
21 lines
379 B
YAML
21 lines
379 B
YAML
server:
|
|
host: "0.0.0.0"
|
|
port: 8080
|
|
log_level: "DEBUG"
|
|
cors_origins:
|
|
- "*"
|
|
|
|
auth:
|
|
# Test API key - DO NOT use in production!
|
|
api_keys:
|
|
test_client: "eb8a89cfd33ab067751fd0e38f74ddf7ac3d75ff012fbab35a616c45c12e0c8d"
|
|
|
|
storage:
|
|
database_file: "data/test_ledgrab.db"
|
|
|
|
logging:
|
|
format: "text"
|
|
file: "logs/ledgrab_test.log"
|
|
max_size_mb: 10
|
|
backup_count: 2
|