Table of contents
What is its function
When processing Office documents, these files are first converted to PDF.
This option allows you to include the interim PDF files in the output. This function is controlled by 1 config property.
- includeOfficePdf — If the interim PDF files should be included in the output
Note — This function requires the libreOfficePath setting to be set up and configured correctly.
How to set this value
Create the following Java properties file on the server running your app server (if you don’t already have one) {user.home}/.idr/buildvu-microservice/buildvu-microservice.properties
In this file add (or update if the key already exists) the following key and value pair.
- includeOfficePdf — This value can be true or false. e.g includeOfficePdf=true
Default Value
When no values are provided or invalid values are provided the following default values are used.
- includeOfficePdf=false
How to use with Docker
In order to provide your own properties file to the Docker image you need to mount the properties file to the image. This is done by adding the following to your docker run command.
--mount "source=/path/to/properties/directory/buildvu-microservice.properties,target=/root/.idr/buildvu-microservice/buildvu-microservice.properties,type=bind"