Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rmitsch/dh-knowledge-map

DH Education Knowledge Map - creating knowledge maps via hypertext
https://github.com/rmitsch/dh-knowledge-map

acdhhackathon2020 digital-humanities visualization wikipedia-api

Last synced: 2 days ago
JSON representation

DH Education Knowledge Map - creating knowledge maps via hypertext

Awesome Lists containing this project

README

        

# DH Education Knowledge Map - creating knowledge maps via hypertext

About this project: [DH Education Knowledge Map - creating knowledge maps via hypertext](https://medium.com/@marta.p/dh-education-knowledge-map-creating-knowledge-webs-via-hypertext-cfb6cc094c17).

### Setup Instructions

#### With conda

Change to source directory. Create environment, then run with
```bash
conda env create --name dhekm --file=environment.yml
conda activate dhekm
python exploration.py
```

Open [http://0.0.0.0:8050](http://0.0.0.0:8050).

#### With Docker

_Downloading and running pre-built image from Docker hub_:
```bash
docker run -p 8050:8050 rmitsch/dh-knowledge-map python exploration.py
```
Open [http://0.0.0.0:8050](http://0.0.0.0:8050).

_Building the image locally and running it_:
```bash
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](http://0.0.0.0:8050).