-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: integrate new parser in compiler
This is a big job: * added more processor utilities * converted optional behaviour configured in config to processors * refactored compiler to separate getting the vars and rendering * create the var and adjuster image processor and removed the corresponding code from the compiler * added factories Still a few TODOs in the code before it can run. Still more tests to write.
- Loading branch information
Showing
87 changed files
with
4,516 additions
and
2,700 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
/.idea/ | ||
/logs/ | ||
out/ | ||
/data | ||
|
||
document-service.jar | ||
**/.DS_Store | ||
.classpath | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
version: '3.7' | ||
|
||
services: | ||
document-service: | ||
build: | ||
context: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
version: '3.7' | ||
|
||
networks: | ||
xes-platform-network: | ||
name: xes-platform-network | ||
|
||
services: | ||
document-service: | ||
image: proxeus/document-service:latest | ||
container_name: xes_document_service | ||
networks: | ||
- xes-platform-network | ||
restart: unless-stopped | ||
environment: | ||
TZ: Europe/Zurich | ||
ports: | ||
- "2115:2115" | ||
- "58082:58082" | ||
volumes: | ||
- ${PROXEUS_DATA_DIR:-./data}/document-service/logs:/document-service/logs | ||
- ${PROXEUS_DATA_DIR:-./data}/document-service/fonts:/document-service/fonts | ||
- ${PROXEUS_DATA_DIR:-./data}/document-service/tmp:/tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.