Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.3 KB

dm_install.md

File metadata and controls

41 lines (34 loc) · 1.3 KB

How To Declarative Mapper (MarkLogic Internal)

Declarative Mapper IDE

  • In your home directory, create a file called dmf-ide.json. On my Mac, this file is /Users/mhavey.dmf-ide.json. Make the content of this file the following:
{
  "ui": {
    "projects": [
    ],
    "current": 0
  },
  "marklogic": {
    "username": "admin",
    "password": "admin",
    "hostname": "localhost",
    "port": "14401",
    "protocol": "http",
    "paths": {
      "dmfTest": "/LATEST/resources/evalSampleDHF-ft",
      "dmfSample": "/LATEST/resources/saveSampleDataSvc"
    },
    "useRestServices": true
   }
}

Modify username, password, hostname, port and protocol if necessary. Compare with values from your gradle.properties file. 14401 is the default port for the xmi2es-tutorials-dmHub-FINAL app server.

Declarative Mapper Engine