An open API service indexing awesome lists of open source software.

https://github.com/dadi/publish-dev

Sample API + Publish installation for development purposes
https://github.com/dadi/publish-dev

Last synced: 5 months ago
JSON representation

Sample API + Publish installation for development purposes

Awesome Lists containing this project

README

          

# DADI Publish development

> Sample API + Publish installation for development purposes

## Installation

1. Install API

```shell
cd api
npm install
```

1. Install Publish

```shell
cd publish
npm install
```

## Usage

1. Run both web services

```shell
## Run API
cd api && npm start

# Run Publish
cd publish && npm start
```

1. Access Publish on http://127.0.0.1:3001

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

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