Skip to content
Snippets Groups Projects
Commit 61938a75 authored by Jonas Blatt's avatar Jonas Blatt :ant:
Browse files

Update docs

parent 61c1663f
No related branches found
No related tags found
No related merge requests found
...@@ -9,4 +9,10 @@ This project contains all source files of the implementation, created for the ma ...@@ -9,4 +9,10 @@ This project contains all source files of the implementation, created for the ma
- [DMN Generator](dmngenerator) - [DMN Generator](dmngenerator)
- [Performance Test](dmnperformancetest) - [Performance Test](dmnperformancetest)
[![pipeline status](https://gitlab.uni-koblenz.de/jonasblatt/ma-jonasblatt-dmn-verifier/badges/master/pipeline.svg)](https://gitlab.uni-koblenz.de/jonasblatt/ma-jonasblatt-dmn-verifier/commits/master) ## Run the API & Frontend as Docker
```
docker compose up -d
```
Visit [localhost:8081](http://localhost:8081) for the `Frontend` and [localhost:8080](http://localhost:8080) for the backend.
\ No newline at end of file
...@@ -10,8 +10,6 @@ This project contains all source files of the implementation, created for the ma ...@@ -10,8 +10,6 @@ This project contains all source files of the implementation, created for the ma
- [Running Backend Instance](http://dmn.fg-bks.uni-koblenz.de:8080) - [Running Backend Instance](http://dmn.fg-bks.uni-koblenz.de:8080)
- [Api Documentation](docApi.md) - [Api Documentation](docApi.md)
[![coverage report](https://gitlab.uni-koblenz.de/jonasblatt/ma-jonasblatt-dmn-verifier/badges/develop/coverage.svg)](https://gitlab.uni-koblenz.de/jonasblatt/ma-jonasblatt-dmn-verifier/commits/develop)
### Important dependencies ### Important dependencies
- [Quarkus](https://quarkus.io/) - [Quarkus](https://quarkus.io/)
- [Camunda DMN](https://github.com/camunda/camunda-dmn-model/) - [Camunda DMN](https://github.com/camunda/camunda-dmn-model/)
...@@ -51,3 +49,9 @@ The application is now runnable using `java -jar target/quarkus-app/quarkus-run. ...@@ -51,3 +49,9 @@ The application is now runnable using `java -jar target/quarkus-app/quarkus-run.
If you want to build an _über-jar_, execute the following command: If you want to build an _über-jar_, execute the following command:
```shell script ```shell script
./mvnw package -Dquarkus.package.type=uber-jar ./mvnw package -Dquarkus.package.type=uber-jar
```
Build a docker image:
```shell
docker build -f src/main/docker/Dockerfile.jvm -t dmnverifier/api .
```
...@@ -46,4 +46,10 @@ The application is now runnable using `java -jar target/quarkus-app/quarkus-run. ...@@ -46,4 +46,10 @@ The application is now runnable using `java -jar target/quarkus-app/quarkus-run.
If you want to build an _über-jar_, execute the following command: If you want to build an _über-jar_, execute the following command:
```shell script ```shell script
./mvnw package -Dquarkus.package.type=uber-jar ./mvnw package -Dquarkus.package.type=uber-jar
\ No newline at end of file ```
Build a docker image:
```shell
docker build -f src/main/docker/Dockerfile.jvm -t dmnverifier/frontend .
```
\ No newline at end of file
services: services:
api: api:
image: gitlab.uni-koblenz.de:4567/jonasblatt/ma-jonasblatt-dmn-verifier/dmnverifier/api image: gitlab.uni-koblenz.de:4567/jonasblatt/ma-jonasblatt-dmn-verifier/dmnverifier/api
environment:
QUARKUS_HTTP_CORS_ORIGINS: "http://localhost:8081"
ports: ports:
- 8080:8080 - 8080:8080
frontend: frontend:
image: gitlab.uni-koblenz.de:4567/jonasblatt/ma-jonasblatt-dmn-verifier/dmnverifier/frontend image: gitlab.uni-koblenz.de:4567/jonasblatt/ma-jonasblatt-dmn-verifier/dmnverifier/frontend
environment: environment:
DMN_VERIFICATION_API_URL: "http://api:8080/" DMN_VERIFICATION_API_URL: "http://localhost:8080/"
ports: ports:
- 8081:8080 - 8081:8080
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment