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.
-
Download: Download the installer from your preferred site, e.g., this link and install it on your machine.
-
Configure: After installation, configure your global identity:
git config --global user.name "Your Name"git config --global user.email "your.email@example.com" -
Verify: Run
git --versionto 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.
It is recommended to use the latest stable version.
-
Download: Download the installer from this link and install it on your machine.
-
Setup: Install the extensions you need.
-
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 20 May 2026