# Infoscreen Client Configuration Template # Copy this file to .env and adjust values for your setup # Development Environment ENV=development DEBUG_MODE=1 LOG_LEVEL=DEBUG # MQTT Broker Configuration MQTT_BROKER=192.168.1.100 # Change to your MQTT server IP MQTT_PORT=1883 # Timing Configuration (shorter intervals for development) HEARTBEAT_INTERVAL=10 # Heartbeat frequency in seconds SCREENSHOT_INTERVAL=30 # Screenshot capture frequency in seconds # Display Manager DISPLAY_CHECK_INTERVAL=5 # Display Manager event check frequency in seconds # File/API Server (used to download presentation files) # Defaults to the same host as MQTT_BROKER, port 8000, scheme http. # If incoming event URLs use host 'server' (or are host-less), simclient rewrites them to this server. FILE_SERVER_HOST= # optional: e.g., 192.168.1.100 FILE_SERVER_PORT=8000 # default API port # http or https FILE_SERVER_SCHEME=http # FILE_SERVER_BASE_URL= # optional full override, e.g., http://192.168.1.100:8000