2021-07-18 21:18:59 +02:00
2021-07-02 21:39:28 +02:00
2021-07-18 21:18:59 +02:00
2021-07-02 21:39:28 +02:00
2021-07-02 21:39:28 +02:00
2021-07-02 21:39:28 +02:00
2021-07-02 21:39:28 +02:00
2021-07-18 21:18:59 +02:00

buerokalender

Eine kleine Webapp um die Belegung eines Büroarbeitsplatzes ohne Kollision zu buchen.

Running the application in dev mode

You can run your application in dev mode that enables live coding using:

./mvnw compile quarkus:dev

Packaging and deployment

The application can be packaged using:

./mvnw package

It produces the quarkus-run.jar file in the target/quarkus-app/ directory.

If you want to build an über-jar, execute the following command:

./mvnw package -Dquarkus.package.type=uber-jar

The application is now runnable using java -jar target/quarkus-app/quarkus-run.jar.

Creating a native executable

You can create a native executable using:

./mvnw package -Pnative

Or, if you don't have GraalVM installed, you can run the native executable build in a container using:

./mvnw package -Pnative -Dquarkus.native.container-build=true

You can then execute your native executable with: ./target/buerokalender-0.1.0-SNAPSHOT-runner

Push to docker.io:

./mvnw clean package -DskipTests -Dquarkus.container-image.push=true
Description
Planung eines Büroarbeitsplatzes
Readme 197 KiB
Languages
Java 62%
HTML 38%