SonarQube is an open-source platform developed by SonarSource for continuous inspection of code quality to perform automatic reviews with static analysis of code to detect bugs, code smells, and security vulnerabilities on 20+ programming languages. SonarQube offers reports on duplicated code, coding standards, unit tests, code coverage, code complexity, comments, bugs, and security vulnerabilities.
If you have Docker installed, then its very easy to have a SonarQube instance running your machine below instructions.
docker pull sonarqube
docker run -d --name sonarqube_container -p 9000:9000 sonarqube
In your browser access http://localhost:9000
And login with default credentials as below
username = admin password = admin
Hope it helps.Thank you.
0 comments:
Post a Comment