diff options
Diffstat (limited to 'server/sonar-docs/src/pages/setup/get-started-2-minutes.md')
-rw-r--r-- | server/sonar-docs/src/pages/setup/get-started-2-minutes.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/server/sonar-docs/src/pages/setup/get-started-2-minutes.md b/server/sonar-docs/src/pages/setup/get-started-2-minutes.md new file mode 100644 index 00000000000..f6004324267 --- /dev/null +++ b/server/sonar-docs/src/pages/setup/get-started-2-minutes.md @@ -0,0 +1,23 @@ +--- +title: Get Started in Two Minutes Guide +url: /setup/get-started-2-minutes/ +--- + +1. [Download](https://www.sonarqube.org/downloads/) the SonarQube Community Edition + +2. Unzip it, let's say in _C:\sonarqube_ or _/etc/sonarqube_ + +3. Start the SonarQube Server: + +``` +# On Windows, execute: +C:\sonarqube\bin\windows-x86-xx\StartSonar.bat + +# On other operating systems, execute: +/etc/sonarqube/bin/[OS]/sonar.sh console +``` + +4. Log in to [http://localhost:9000](http://localhost:9000) with System Administrator credentials (admin/admin) and follow the embedded tutorial to analyze your first project. + + +![](/images/exclamation.svg) This play instance is suitable for demonstration purpose, when you are ready to move to production, take some time to read the [Install the Server](/setup/install-server/) documentation. |