Client application for the FAIR Data Point providing an HTML-based user interface for browsing the metadata and administration.
Documentation explains how to install, configure and use the FAIR Data Point.
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
This project is licensed under the MIT License - see the LICENSE file for more details.