...
- For Windows only, download and install the latest version of Git Bash from https://gitforwindows.org/index.html
- For Linux only, install git using the command sudo apt-get install git -y
Clone “so” project from https://gerrit.onap.org/r/#/admin/projects/so
- Select “Clone with commit-msg hook”
- Select “ssh”
- Copy the git clone command to clipboard
- Paste the command into Git Bash or terminal, in the directory that will store your project.
- Download and install the latest version of Atom text editor from https://atom.io/
Install Python
Windows
Linux
- Download latest version of Python from https://www.python.org/downloads/
- Search “env” in Windows Start Search → Edit the system environment variables → Environment Variables → Edit the Path User variable → New “C:\Python27\Scripts\” and New “C:\Python27\Scripts\”
- sudo apt install python-pip -y
< >- Download and install the appropriate JDK 8 package for your machine from https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
Install Node.js
Windows
Linux
- Download and install the appropriate version for your Windows machine from https://nodejs.org/en/download/
- sudo apt-get install nodejs -y
- sudo apt-get install npm -y
Install Angular Command Line Interface (CLI)
Windows
Linux
- In Git Bash run the command
npm install -g @angular/cli
Linux requires the following packages to be installed manually:
- npm install -g @angular/cli
- npm install typescript@3.2.2 --save-dev --save-exact
- npm install --save-dev @angular-devkit/build-angular
- npm install popper.js –save
Update Angular:
- ng update --all
Install Maven
Windows
Linux
- Download and install the appropriate version for your Windows machine from https://maven.apache.org/download.cgi#
- sudo apt-get install mvn -y
...