This repo contains simple web-based user interface for LIMES server.
Try demo at http://limes-webui.aksw.org/
You can start LIMES server with LIMES Web UI using docker-compose file from example/docker-compose.yml
by running:
cd example/ && docker-compose up
First, you will need a running instance of LIMES server. It can be started via docker by executing the following command:
docker run -d -p 8080:8080 dicegroup/limes
This will start LIMES server on port 8080.
Then you can simply start web UI via docker by running:
docker run -d -p 3000:80 -e LIMES_URL=http://localhost:8080 dicegroup/limes-webui
Web UI will be available in browser on http://localhost:3000