Skip to main content

DMS (Document Management System)

If your project requires document management capabilities, you can enable this feature by running the dedicated DMS microservice.

How to Run the DMS Microservice

Step 1: Clone and Run DMS Service

  • Clone the DMS microservice from the repository:

git clone Document-Management-Service

  • Start the project. By default, it runs on port 8085.

Step 2: Configure Your Backend Application

  • Open the application.yml file in your generated backend application.
  • Set the DMS service port to the port where your DMS microservice is running (default: 8085).
  • Example:
  • dms:
    host: "http://localhost"
    port: 8085
  • Now your backend application will be able to communicate with the DMS microservice.