Skip to content

FAIR Data Point Client application for browsing the metadata and administration.

License

Notifications You must be signed in to change notification settings

FAIRDataTeam/FAIRDataPoint-client

Repository files navigation

FAIR Data Point Client

Client application for the FAIR Data Point providing an HTML-based user interface for browsing the metadata and administration.

Build Status License

Documentation explains how to install, configure and use the FAIR Data Point.

Development

Install dependencies using:

$ npm install

Create public/config.js file. For local development, you need to set the apiURL to where the FDP server is running, usually:

// public/config.js
window.config = {
  apiURL: 'http://localhost:8080'
}

Tip: If you run both, the server and the client locally, start the server first, because it needs to run on port 8080. The client will then be automatically started on port 8081.

Compile and hot-reload for development:

$ npm run serve

Compile and minify for production:

$ npm run build

Run tests or linter:

$ npm run test
$ npm run lint

License

This project is licensed under the MIT License - see the LICENSE file for more details.