Skip to main content

Prerequisites

Git

Download and install Git from:
https://git-scm.com/

Configure Git User

After installing Git, configure your user name and email (required for commits):

git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"

Verify configuration:

git config --global user.name
git config --global user.email

These settings will be used for all repositories on your machine. To set them for a specific repository only, omit the --global flag.

NodeJs

Download and install NodeJs from:
https://nodejs.org

Visual Studio Code

Download and install VsCode from:
https://code.visualstudio.com/Download