Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mattjlewis/quarkus-testapp
- Owner: mattjlewis
- Created: 2020-02-17T13:00:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-29T22:32:59.000Z (almost 5 years ago)
- Last Synced: 2024-12-21T15:26:53.110Z (about 2 months ago)
- Topics: angular, java, jpa2, microprofile, microservice, quarkus
- Language: Java
- Homepage:
- Size: 125 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 .