Getting started

Tracked.26 runs as an Electron desktop app. Running it locally from source takes three commands.

Requirements

You'll need Node.js and npm installed, plus git to clone the repository. Any recent Node LTS release works.

Install & run

  1. Clone the repository

    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
  2. Open it in VS Code

    From inside the folder:

    code .
  3. Install dependencies

    npm install
  4. Run the app

    npm start

    This launches the Electron window with the dashboard, subject trackers, heatmap and monthly targets.

Build for Windows

To package a distributable executable:

npm run dist

The packaged app is generated inside the dist folder using electron-builder.

Project structure

tracked-26/ ├── app/ │ ├── index.html │ ├── style.css │ ├── script.js │ ├── particles.js │ └── particles-init.js ├── build/ │ ├── icon.ico │ └── icon.png ├── main.js ├── preload.js ├── package.json └── README.md

Built with

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.