An online GUI application that makes it easy to create linked data from tabular data from the cultural heritage domain.
This application uses LD Wizard.
You can use this application online over at: https://ldwizard.netwerkdigitaalerfgoed.nl
Follow these steps to build the application locally:
-
Install Node.js.
-
Clone this repository and go into its root directory.
-
Run
npm install
to install the dependencies. -
Run
npm run build
to create the build locally -
Start an HTTP server in the
lib/
subdirectory. For example:cd lib http-server .
-
Run
npm install -g http-server
if http-server is not yet available on your system -
Visit http://127.0.0.1:8081 in a web browser.
Follow these steps to build a Docker container for this application. This is an alternative for building the application locally, which does not require installing Node.js. The alternative does require Docker as a prerequisite.
-
Build the Docker image:
docker-compose -f ./docker/docker-compose.yml build
-
Start the service:
docker-compose -f ./docker/docker-compose.yml up
-
Visit http://localhost:4000 in a web browser.