Timekeeping
You can connect Skate Results to your timekeeping system and upload data in realtime. The data is available in the “Live”-tab, on kiosk displays, and in the livestream.
In the future, the collected information will be combined with the imported results to provide more details and insights for the users.
MyLaps
- Enable the Scoreboard Feed in the MyLaps Orbits software (Scoreboard -> Scoreboard Settings)
- Install Docker
- Use
docker compose up
to run the following Docker application
docker-compose.yml
services:
leaderboard:
image: ghcr.io/bastianpaetzold/rmonitorleaderboard:latest
container_name: leaderboard
restart: always
command:
[
"--headless",
"--start-server",
"--start-client",
"--client-max-retries=-1",
"--host=$scoreboardHost",
"--port=50000",
]
realtime-uploader:
image: ghcr.io/skateresults/realtime-uploader:latest
container_name: realtime-uploader
restart: always
environment:
REALTIME_LEADERBOARD: http://leaderboard:8080
REALTIME_EVENT: $event
REALTIME_TOKEN: $token
Replace the following variables:
$scoreboardHost
: IP of the machine running the Scoreboard Feed$event
: ID of your event$token
: An API key you can create via the “API Keys” button in the admin area