
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 34s
24 lines
755 B
Bash
24 lines
755 B
Bash
# Service settings for Squash Display Kiosk
|
|
# (can also override anything in the .template_info.env file in the template to make it specific to this server)
|
|
|
|
# REQUIRED: URL to display in kiosk mode
|
|
KIOSK_URL="https://squash.kiwi/court/otog"
|
|
|
|
# User account that will run the kiosk (must exist on the system)
|
|
KIOSK_USER="squash"
|
|
|
|
# Display settings
|
|
DISPLAY_WIDTH="1920"
|
|
DISPLAY_HEIGHT="1080"
|
|
DISPLAY_REFRESH="60"
|
|
|
|
# GPU memory allocation (MB) - higher values improve browser performance
|
|
GPU_MEM="256"
|
|
|
|
# Enable features (true/false)
|
|
ENABLE_WATCHDOG="true" # Auto-restart browser if it crashes
|
|
ENABLE_AUTO_LOGIN="true" # Auto-login on boot
|
|
ENABLE_HDMI_KEEP_ALIVE="true" # Prevent HDMI from sleeping
|
|
|
|
# Server Settings
|
|
SSH_USER="dropshell" |