Skip to content

eclipse-edc/IdentityHub

Repository files navigation

Identity Hub

This repository contains an implementation for a Decentralized Web Node such as defined by the Decentralized Identity Fundation.

See also the main project page on Github.

Quick start

A basic launcher configured with in-memory stores (i.e. no persistent storage) is provider here. You can run it as a Docker container by following the steps below.

Build the .jar

./gradlew :launcher:shadowJar

Create the Docker image

docker build -t identity-hub ./launcher

Start the Identity Hub

docker run -d --rm --name identity-hub -p 8188:8188 identity-hub

Documentation

Developer documentation can be found under docs/developer, where the main concepts and decisions are captured as decision records.

Contributing

See how to contribute for details.