Analysing a React Native Project Using SonarQube?

Viewed 13205

enter image description here

I have installed sonarqube inside a virtual machine in my system.And is able to access it from anywhere inside my local network.

I am trying to analyse the java-script files of my react-native project which is inside the app folder as shown in the above screenshot.

so i set up a sonar-project.properties file inside the base directory of react-native project(as shown in the above screenshot) according to the sonarqube official doc in the below link

https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner

and from the base directory i am trying push the file using sonar-scanner command (i am doing this from outside the virtual machine from my system os).

and it shows sonar-scanner command not found(as in the blow screenshot). enter image description here

How does this sonar-scanner command work ?,when accessing sonarserver from outside the virtualmachine do need something extra in my system os other than sonar-project.properties file in my projects root directory ? ,do i need to install something in my system os to use the command sonar-scanner.

And what does the below property do

// To import the LCOV report

sonar.javascript.lcov.reportPath=report/lcov.dat

And how do i properly configure it for my project ?

1 Answers
Related