Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

### GH Page & Repository

Create a new repo from this [template](https://github.com/new?template_name=didwebvh-tutorial&template_owner=OpSecId)
Enable GH pages Settings -> Pages
Set the source to Deploy from a branch
Deploy from the main branch `/(root)` directory
- Create a new repo from this [template repository](https://github.com/new?template_name=didwebvh-tutorial&template_owner=OpSecId)
- Enable GH pages via Settings -> Pages
- Set the source to Deploy from a branch
- Deploy from the main branch `/(root)` directory

### Docker & CLI

Expand All @@ -33,7 +33,6 @@ alias webvh-cli="docker exec webvh-tutorial-cli webvh"

# Confirm alias is registered
webvh-cli --help

```

## Task 2: Create the first log entry
Expand All @@ -50,7 +49,6 @@ webvh-cli did-params --update-key <multikey> --method 0.5

# Generate the SCID input file with a current timestamp
webvh-cli gen-scid-input --version-time <datetime>

```

## Task 3: Generate the SCID (Self-Certifying Identifier)
Expand Down Expand Up @@ -100,14 +98,12 @@ webvh-cli add-proof --update-key <>

# Add to the log file
webvh-cli new-line

```

Resolve your DID again.



## Commands

```bash
_________________________________________________________________
Usage: webvh [OPTIONS] COMMAND [ARGS]...
Expand Down Expand Up @@ -158,4 +154,4 @@ Usage: webvh add-proof [OPTIONS]
Options:
--update-key TEXT The update key to use.
_________________________________________________________________
```
```
18 changes: 2 additions & 16 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,6 @@ services:
interval: 1s
timeout: 1s
retries: 5
labels:
- traefik.enable=true
- traefik.http.routers.endorser.rule=Host(`agent.webvh-tutorial.localhost`)
- traefik.http.routers.endorser.entrypoints=web
- traefik.http.services.endorser.loadbalancer.server.port=8020

traefik:
image: traefik:v3.1
command:
- --api.insecure=true
- --providers.docker=true
- --providers.docker.exposedbydefault=false
- --entryPoints.web.address=:80
ports:
- 80:80
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- 8020:8020