You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The quarkus command lets you create projects, manage extensions and do essential build and dev commands using the underlying project build tool.
27
+
The quarkus CLI tool lets you create projects, manage extensions and do essential dev, build and deploy commands using the underlying project build tool in a simplified way.
28
28
29
29
Follow these instructions to install Quarkus CLI: https://quarkus.io/guides/cli-tooling
30
30
@@ -37,7 +37,6 @@ quarkus create app \
37
37
com.redhat.developers:tutorial-app:1.0-SNAPSHOT
38
38
cd {project-name}
39
39
----
40
-
41
40
--
42
41
====
43
42
@@ -87,7 +86,7 @@ When running this test, the application is started once, then all tests are exec
87
86
88
87
You can run the test in your IDE or by running the following:
89
88
90
-
[tabs]
89
+
[tabs%sync]
91
90
====
92
91
Maven::
93
92
+
@@ -136,7 +135,7 @@ This is probably one of the best features of Quarkus: enabling a very fast and p
136
135
137
136
Let's start the _Live Coding_ mode by invoking `mvn`. You probably won't need to stop/start Quarkus again during this tutorial:
Copy file name to clipboardExpand all lines: documentation/modules/ROOT/pages/setup.adoc
+34-5Lines changed: 34 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ include::../_attributes.adoc
4
4
5
5
== IDE
6
6
7
-
You can use any Java IDE for this tutorial but if you didn't try it before, we recommend https://code.visualstudio.com/download[VS Code, window="_blank"] with the https://marketplace.visualstudio.com/items?itemName=redhat.java[Language Support for Java(TM) by Red Hat, window="_blank"] and the https://marketplace.visualstudio.com/items?itemName=redhat.vscode-quarkus[Quarkus, window="_blank"] extensions.
7
+
You can use any Java IDE for this tutorial but if you haven't tried it before, we recommend https://code.visualstudio.com/download[VS Code, window="_blank"] with the https://marketplace.visualstudio.com/items?itemName=redhat.java[Language Support for Java(TM) by Red Hat, window="_blank"] and the https://marketplace.visualstudio.com/items?itemName=redhat.vscode-quarkus[Quarkus, window="_blank"] extensions.
8
8
9
9
[TIP]
10
10
====
@@ -14,7 +14,7 @@ which allows you to run this entire tutorial within a container that will have a
14
14
15
15
== CLI Tools
16
16
17
-
The following CLI tools are required for running the exercises in this tutorial.
17
+
The following CLI tools are recommended for running the exercises in this tutorial.
18
18
19
19
////
20
20
ifndef::workshop[]
@@ -27,7 +27,7 @@ endif::workshop[]
27
27
GraalVM is only required if you intend to build a native image for your local operating system. If you want to create a container using a native image, you can use the Quarkus feature for this and don't need to install GraalVM locally.
28
28
====
29
29
30
-
NOTE: You can also use Docker instead of Podman. The advantage of Podman is that it is 100% Free Open Source and does not need to run with elevated privileges. Just use 'podman' instead of 'docker' throughout the tutorial's instructions, or easier yet, alias docker=podman to automatically use podman under the hood for docker commands.
30
+
NOTE: * You can also use Docker instead of Podman. The advantage of Podman is that it is 100% Free Open Source and does not need to run with elevated privileges. Just use 'podman' instead of 'docker' throughout the tutorial's instructions, or easier yet, alias docker=podman to automatically use podman under the hood for docker commands.
31
31
32
32
[tabs]
33
33
====
@@ -36,11 +36,12 @@ Local Installation::
36
36
--
37
37
Please have them installed and configured before you get started with any of the tutorial chapters.
38
38
39
+
39
40
[options="header"]
40
41
|===
41
42
|**Tool**|**macOS**|**Fedora**|**Windows**
42
43
43
-
| **Podman Desktop**
44
+
| **Podman Desktop* **
44
45
| https://podman-desktop.io/downloads[Podman Desktop for Mac, window="_blank"]
45
46
| https://podman-desktop.io/downloads[Podman Desktop for Linux, window="_blank"]
46
47
| https://podman-desktop.io/downloads[Podman Desktop for Windows, window="_blank"]
@@ -61,6 +62,21 @@ Please have them installed and configured before you get started with any of the
61
62
| https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-{graalvm-version}/graalvm-ce-java17-windows-amd64-{graalvm-version}.zip[GraalVM Community Edition {graalvm-version}]
62
63
63
64
|===
65
+
66
+
[TIP]
67
+
=====
68
+
You can also install Java and Maven using https://sdkman.io[SDKMAN!]. This allows easy version/distribution switching (and you can install the Quarkus CLI with it as well)
0 commit comments