Some checks failed
Validate / validate (push) Failing after 8s
- Fix Flash of Unstyled Content (FOUC) by hiding page until translations load - Hide body initially with visibility:hidden - Show content after translations are applied to avoid English flash - Fix authenticated indicator layout with white-space:nowrap - Add "●" symbol to translation files to prevent disappearance on reload - Enable network access by binding server to 0.0.0.0 in test config - Simplify test config API keys to single entry Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
38 lines
742 B
YAML
38 lines
742 B
YAML
server:
|
|
host: "0.0.0.0" # Listen on all interfaces (accessible from local network)
|
|
port: 8080
|
|
log_level: "DEBUG" # Verbose logging for testing
|
|
cors_origins:
|
|
- "*"
|
|
|
|
auth:
|
|
# Test API key - DO NOT use in production!
|
|
api_keys:
|
|
test_client: "eb8a89cfd33ab067751fd0e38f74ddf7ac3d75ff012fbab35a616c45c12e0c8d"
|
|
|
|
processing:
|
|
default_fps: 30
|
|
max_fps: 60
|
|
min_fps: 1
|
|
border_width: 10
|
|
interpolation_mode: "average"
|
|
|
|
screen_capture:
|
|
buffer_size: 2
|
|
|
|
wled:
|
|
timeout: 5
|
|
retry_attempts: 3
|
|
retry_delay: 1
|
|
protocol: "http"
|
|
max_brightness: 255
|
|
|
|
storage:
|
|
devices_file: "data/test_devices.json"
|
|
|
|
logging:
|
|
format: "text" # Easier to read during testing
|
|
file: "logs/wled_test.log"
|
|
max_size_mb: 10
|
|
backup_count: 2
|