Skip to the content.

Getting Started

Welcome to Tuning Coach! This guide walks you through building and running the sidecar and enabling the SimHub overlay.

Prerequisites

Build and Run the Sidecar

cargo build --release
./target/release/tuning-coach-sidecar

The sidecar listens on:

Install the SimHub Overlay

Copy overlay/tuning-coach.djson and overlay/tuning-coach.djson.metadata into:

%ProgramFiles(x86)%\SimHub\DashTemplates\tuning-coach\

PowerShell (from repo root):

$dst = Join-Path ${env:ProgramFiles(x86)} 'SimHub\DashTemplates\tuning-coach'; New-Item -ItemType Directory -Force -Path $dst | Out-Null; Copy-Item .\overlay\tuning-coach.djson, .\overlay\tuning-coach.djson.metadata -Destination $dst -Force

Then in SimHub:

  1. Open Overlays.
  2. Enable Tuning Coach.
  3. Position/resize as desired.

The SimHub overlay points to http://127.0.0.1:7778/, so no external static file server is required.

Next Steps