Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 641 Bytes

File metadata and controls

43 lines (30 loc) · 641 Bytes

DADI Publish development

Sample API + Publish installation for development purposes

Installation

  1. Install API

    cd api
    npm install
  2. Install Publish

    cd publish
    npm install

Usage

  1. Run both web services

    ## Run API
    cd api && npm start
    
    # Run Publish
    cd publish && npm start
  2. Access Publish on http://127.0.0.1:3001

  3. Access API on http://127.0.0.1:9998. The following user is created by default:

    {
      "clientId": "api-client",
      "secret": "client-secret",
      "accessType": "admin"
    }