Skip to main content
Version: 5.3.0 - 5.3.2

Set up the tools

Designing the frontend on KAIZEN requires Git and an IDE to maintain code version control.

Git​

Version control is essential for collaborations.

  1. Download: Download the installer from your preferred site, e.g., this link and install it on your machine.

  2. Configure: After installation, configure your global identity:

    git config --global user.name "Your Name"
    git config --global user.email "your.email@example.com"
  3. Verify: Run git --version to confirm the version installed.

Visual Studio Code (VSC)​

VSC is the recommended IDE for source code editing, if you intend to generate the frontend code.

note

It is recommended to use the latest stable version.

  1. Download: Download the installer from this link and install it on your machine.

  2. Setup: Install the extensions you need.

  3. Verify: Open the folder containing the git repository files. Make a minor change in a file and run the following command to see if the change is captured.

    git status

Last updated on 21 Sep 2026