Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mattjlewis/quarkus-testapp

An Eclipse MicroProfile test application developed with Quarkus
https://github.com/mattjlewis/quarkus-testapp

angular java jpa2 microprofile microservice quarkus

Last synced: 6 days ago
JSON representation

An Eclipse MicroProfile test application developed with Quarkus

Awesome Lists containing this project

README

        

# Quarkus Test Application project

This project uses Quarkus, the Supersonic Subatomic Java Framework.

If you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .

## Running the Application in Dev Mode

Start the REST services:
```
cd services
mvn quarkus:dev
```
Package and run the Angular User Interface:
```
cd ui
./package.sh
mvn quarkus:dev
```

## Creating a Native Executable

You can create a native executable using: `mvn package -Pnative`.

Or you can use Docker to build the native executable using: `mvn package -Pnative -Dquarkus.native.container-build=true`.

You can then execute your binary: `./target/quarkus-testapp-project-1.0.0-SNAPSHOT-runner`

If you want to learn more about building native executables, please consult https://quarkus.io/guides/building-native-image-guide .