Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1020 Bytes

File metadata and controls

36 lines (25 loc) · 1020 Bytes

Getting started

Quarkus projects can be created via the Quarkus CLI, the quarkus maven plugin or https://code.quarkus.io.

For step by step infos for the CLI or Maven plugin, visit https://quarkus.io/guides/getting-started. For Gradle support, see here.

This project was generated by either

quarkus create app org.erni.quarkus:learning-quarkus
mvn io.quarkus.platform:quarkus-maven-plugin:3.22.2:create "-DprojectGroupId=org.erni.quarkus" "-DprojectArtifactId=learning-quarkus"

Running the application in dev mode

You can run your application in dev mode that enables live coding using the Mvn wrapper or Quarkus CLI:

./mvnw quarkus:dev
quarkus dev

The Quarkus app starts in the terminal and allows for interaction while running.

TASK

Optional: Create your own project stub.

Start the app in development mode and verify the call http://localhost:8080/hello. Change the response content and observe it taking effect.