Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#85 next part of translation #89

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 16 additions & 15 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
= DookuG

Document generátor és template kezelő modul
Document generator and template handler module

== Technológiák
== Technologies

.Service (jar, war)
- Java 17+
- Java EE 10
- Wildfly 27.0.1.Final

== Servicek
== Servics

* dookug-document-service - tartalom:
** Dokumentum generálás mentett template felhasználásával
** Dokumentum generálás request alapján
** Generált dokumentum tartalmának lekérdezése
** Dokumentum generálás request alapján modulban tárolt templattel
* dookug-document-service - contents:
** Generating document with stored template data
** Generating document from request data
** Query content of generated document
** Generating document from request and stored template data

== Fejlesztői környezet
Fejlesztésre és működésre a következőre van szükség.
== Development environment

* Adatbázis - alapértelmezetten a Oracle XE és Postgres adatbázissal van tesztelve a rendszer
* Feltöltött tábla szerkezet melyek a `dookug-common-model` entitásainak felel meg
* Wildfly alkalmazás szerver
* Telepített `dookug-document-service` a WF alkalmazás szerverben
* Observability (opcionális) - Prometheus + Grafana
For development and operation, the following are required:

* Database - alapértelmezetten a Oracle XE és Postgres adatbázissal van tesztelve a rendszer
* Uploaded table structure corresponding to the entities of the `dookug-model`.
* Wildfly application server
* Deployed `dookug-document-service` on the wildfly application server
* Observability (optional) - Prometheus + Grafana
10 changes: 7 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,14 @@
<goals>
<goal>generate-schema</goal>
</goals>
<!-- default process-classes, ami keso gitlab ci "compile" szamara -->
<!-- default process-classes, which is late event for GitLab CI 'compile' -->
<phase>compile</phase>
<!-- sajnos a https://github.com/smallrye/smallrye-open-api/tree/main/tools/maven-plugin#m2e-integration valamiert kirorli
a "paths" reszt az openapi fajlban, de konzolbol a maven jol kezeli. Problema a 'package' maven phase, ami valahogy elrontja -->
<!-- Unfortunately, the
https://github.com/smallrye/smallrye-open-api/tree/main/tools/maven-plugin#m2e-integration
inexplicably removes the 'paths' section from the
OpenAPI file, but Maven handles it correctly from
the console. The problem arises during the 'package'
Maven phase, which seems to cause the issue -->
<configuration>
<outputDirectory>${project.build.directory}/openapi</outputDirectory>
</configuration>
Expand Down
Loading