/LIMES-webui

Simple web-based user interface for LIMES server

Primary LanguageHTMLGNU Affero General Public License v3.0AGPL-3.0

LIMES Web UI

This repo contains simple web-based user interface for LIMES server.

Try demo at http://limes-webui.aksw.org/

Simple usage via docker-compose

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

Usage via docker images

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