Skip to content

Latest commit

 

History

History

code-with-quarkus

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Your first Quarkus project

This module is the output of the creation of your first Quarkus project. It exposes a simple hello endpoint.

Dev

You can run this application in dev mode using:

> mvn quarkus:dev

The application is exposed on http://localhost:8080/

Build

Build it the application package using:

> mvn clean package

The output is located in target/quarkus-app

Run

Once packaged, you can run the application with:

> java -jar target/quarkus-app/quarkus-run.jar