From f51edd4c6cb0a90e323e4c2f7eb8f7851d6a2524 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 2 Sep 2025 10:06:21 +1200 Subject: [PATCH] Update template service.env to use CLUB_CODE and COURT_NUMBER format --- squashkiwi-streaming/config/service.env | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/squashkiwi-streaming/config/service.env b/squashkiwi-streaming/config/service.env index 43c202a..c7dd26f 100644 --- a/squashkiwi-streaming/config/service.env +++ b/squashkiwi-streaming/config/service.env @@ -16,8 +16,11 @@ CAMERA_USER=admin CAMERA_PASSWORD=changeme CAMERA_RTSP_PORT=554 -# Court Configuration -COURT_ID=court1 +# Court Configuration +# CLUB_CODE: Your club's code (e.g., OTOG for Otago, WELL for Wellington) +# COURT_NUMBER: The court number (1, 2, 3, etc.) +CLUB_CODE=OTOG +COURT_NUMBER=1 COURT_NAME="Court 1" # SquashKiwi API @@ -32,6 +35,10 @@ IDLE_TIMEOUT=300 HOST_PORT=8880 PUBLIC_IP= +# MediaMTX Authentication (optional - remove values to disable auth) +MEDIAMTX_USER= +MEDIAMTX_PASS= + # SSH User automatically set on service creation. SSH_USER="root"