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
Copy file name to clipboardExpand all lines: documentation/modules/ROOT/pages/02_basics.adoc
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
====
9
9
10
10
Maven::
11
-
+
11
+
+
12
12
--
13
13
[.console-input]
14
14
[source,bash,subs="+macros,+attributes"]
@@ -20,11 +20,11 @@ cd {project-name}
20
20
Quarkus CLI::
21
21
+
22
22
--
23
-
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.
23
+
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.
24
24
25
25
Follow these instructions to install Quarkus CLI: https://quarkus.io/guides/cli-tooling
26
26
27
-
Then create the application:
27
+
Then create the application:
28
28
[.console-input]
29
29
[source,bash,subs="+macros,+attributes"]
30
30
----
@@ -49,7 +49,7 @@ Or else if you're a CLI person, you can run a `curl` command like:
49
49
[.console-input]
50
50
[source,bash]
51
51
----
52
-
curl localhost:8080/hello
52
+
curl -w '\n' localhost:8080/hello
53
53
----
54
54
55
55
[.console-output]
@@ -83,7 +83,7 @@ You can run the test in your IDE or by running the following:
83
83
[tabs%sync]
84
84
====
85
85
Maven::
86
-
+
86
+
+
87
87
--
88
88
[.console-input]
89
89
[source,bash,subs="+macros,+attributes"]
@@ -132,7 +132,7 @@ Let's start the _Live Coding_ mode by using the `dev` command. You probably won'
132
132
[tabs%sync]
133
133
====
134
134
Maven::
135
-
+
135
+
+
136
136
--
137
137
[.console-input]
138
138
[source,bash,subs="+macros,+attributes"]
@@ -152,7 +152,7 @@ quarkus dev
152
152
--
153
153
====
154
154
155
-
NOTE: By default Quarkus uses 'localhost' for the dev mode host setting. If you are working in a remote development environment, you may need to set the host to 0.0.0.0 by appending `-D"quarkus.http.host=0.0.0.0"` to the above command.
155
+
NOTE: By default Quarkus uses 'localhost' for the dev mode host setting. If you are working in a remote development environment, you may need to set the host to 0.0.0.0 by appending `-D"quarkus.http.host=0.0.0.0"` to the above command.
156
156
157
157
== Dev UI
158
158
@@ -182,6 +182,6 @@ Press `r` and the tests will start running. You should see the status change dow
182
182
All 1 test is passing (0 skipped), 1 test was run in 11705ms. Tests completed at 16:02:32.
183
183
----
184
184
185
-
TIP: If you don’t want to have continuous testing enabled, you can change this by adding `quarkus.test.continuous-testing=disabled` to your `src/main/resources/application.properties`.
185
+
TIP: If you don’t want to have continuous testing enabled, you can change this by adding `quarkus.test.continuous-testing=disabled` to your `src/main/resources/application.properties`.
186
186
187
-
You can find more details about controlling continuous testing in https://quarkus.io/guides/continuous-testing#controlling-continuous-testing[this guide].
187
+
You can find more details about controlling continuous testing in https://quarkus.io/guides/continuous-testing#controlling-continuous-testing[this guide].
Copy file name to clipboardExpand all lines: documentation/modules/ROOT/pages/04_panache.adoc
+24-25Lines changed: 24 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
:project-name: tutorial-app
4
4
5
5
[#quarkusp-demo-overview]
6
-
== Demo Overview
6
+
== Demo Overview
7
7
8
8
You'll learn how easy and productive Quarkus is with Hibernate with Panache. For this, we'll develop a simple CRUD REST API that handles information about fruits.
9
9
@@ -21,12 +21,12 @@ Just open a new terminal window, and make sure you're at the root of your `{proj
0 commit comments