Tracked.26 runs as an Electron desktop app. Running it locally from source takes three commands.
You'll need Node.js and npm installed, plus git to clone the repository. Any recent Node LTS release works.
Open a terminal — the built-in one in VS Code works fine — and run:
git clone https://github.com/lucifer4rout/Tracked-26.git
cd Tracked-26
From inside the folder:
code .
npm install
npm start
This launches the Electron window with the dashboard, subject trackers, heatmap and monthly targets.
To package a distributable executable:
npm run dist
The packaged app is generated inside the dist folder using electron-builder.
Electron, HTML, CSS and JavaScript on the app side, packaged with electron-builder. This marketing site is separate — plain HTML/CSS/JS, no build step, so you can edit it directly in VS Code and open index.html with a tool like Live Server.