Skip to content

rmitsch/dh-knowledge-map

Repository files navigation

DH Education Knowledge Map - creating knowledge maps via hypertext

About this project: DH Education Knowledge Map - creating knowledge maps via hypertext.

Setup Instructions

With conda

Change to source directory. Create environment, then run with

conda env create --name dhekm --file=environment.yml
conda activate dhekm
python exploration.py

Open http://0.0.0.0:8050.

With Docker

Downloading and running pre-built image from Docker hub:

docker run -p 8050:8050 rmitsch/dh-knowledge-map python exploration.py

Open http://0.0.0.0:8050.

Building the image locally and running it:

docker build -t dh-knowledge-map -f Dockerfile .
docker run -p 8050:8050 dh-knowledge-map python exploration.py

Open http://0.0.0.0:8050.