Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 648 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 648 Bytes

Document Naming Service

Tutorials

Add the document-naming-service to your stack

Add the following snippet to your docker-compose.yml file to include the document-naming-service service in your project.

document-naming-service:
  image: kanselarij/document-naming-service:0.3.8

The service supports the following environment variables:

    environment:
      ENABLE_SENDING_TO_VP_API: false

Add the following snippet to your dispatcher.ex config file to expose this service's endpoint.

match "/document-naming/*path", @json_service do
  Proxy.forward conn, path, "http://document-naming/"
end