Skip to content

Commit

Permalink
WFLY-18428: Fix more typos; place the 'Get Started' link in the middle
Browse files Browse the repository at this point in the history
  • Loading branch information
hpehl committed Nov 10, 2023
1 parent 75698a8 commit d40362a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion _layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ <h1>Wild<strong>Fly</strong></h1>
<h2>A powerful, modular, & lightweight application server that helps you build amazing applications.</h2>
<h3>Now available: <span style="font-weight: 100;">Wild</span><strong>Fly</strong> {{latestRelease.version_shortname}}</h3>
<div class="home-ctas">
<a href="{{site.baseurl}}/downloads/" class="button-cta secondary">Download Wild<strong>Fly</strong></a>
<a href="{{site.baseurl}}/get-started/" class="button-cta">Get Started</a>
<a href="https://github.com/wildfly/wildfly/releases/download/{{latestRelease.version}}/wildfly-preview-{{latestRelease.version}}.zip" class="button-cta secondary">Try WildFly Preview</a>
<a href="{{site.baseurl}}/downloads/" class="button-cta secondary">Download Wild<strong>Fly</strong></a>
</div>

</div>
Expand Down
12 changes: 6 additions & 6 deletions getstarted.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permalink: /get-started/

=== Step 0. Install Java & Maven

You need Java (at least version `11`, and preferably the latest LTS version) and Maven installed on your machine to create a Maven project that contains the source code of the Jakarta EE application.
You need Java (at least version `11`, and preferably `17`) and Maven installed on your machine to create a Maven project that contains the source code of the Jakarta EE application.

You can verify they are installed by executing the commands:

Expand All @@ -34,19 +34,19 @@ The `getting-started` project that is generated contains a simple "Hello World"
exposes a HTTP endpoint with the Jakarta-RS API.

The Maven project is configured to "provision" (install and configure)
WildFly that hosts your application.
the WildFly that hosts your application.

=== Step 2. Build the Application

You can build the application by executing the command:
You can build the application by executing the commands:

[source,bash]
----
cd getting-started
mvn package verify
----

This Maven command compiles the Jakarta EE application, provisions WildFly, deploys the application in WildFly and
This Maven command compiles the Jakarta EE application, provisions WildFly, deploys the application into WildFly and
runs integration tests against it.
When this command is finished, you have a fully functional, tested application running on WildFly.

Expand All @@ -61,11 +61,11 @@ The `target/server` contains a fully functional WildFly server with your applica

The application is accessible at http://localhost:8080/.

To stop the application, type `Ctrl + C` in the terminal where your started WildFly.
To stop the application, type `Ctrl + C` in the terminal where you started WildFly.

=== Step 4. Continuous Development

You can develop your application and see the updates in the running application immediately by using the `wildfly:dev` from the root
You can develop your application and see the updates in the running application immediately by using the `wildfly:dev` goal from the root
of your project:

[source,bash]
Expand Down

0 comments on commit d40362a

Please sign in to comment.