this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

labelmaker: repo DID creation notes

+21
+21
cmd/labelmaker/README.md
··· 78 78 79 79 Counter state will not persist across restarts unless Redis is configured as 80 80 well. 81 + 82 + 83 + ## Repo Account Setup 84 + 85 + You'll need a DID and handle for the labelmaker service itself. 86 + 87 + Generate the secret keys (as JSON files), along with did:key representations, 88 + and store these in a password manager: 89 + 90 + go run ./cmd/laputa/ gen-key -o labelmaker_signing.key 91 + go run ./cmd/gosky/ did didKey --keypath labeler_signing.key 92 + 93 + go run ./cmd/laputa/ gen-key -o labelmaker_recovery.key 94 + go run ./cmd/gosky/ did didKey --keypath labeler_recovery.key 95 + 96 + Use the result to generate a new DID: 97 + 98 + go run ./cmd/gosky/ did create --recoverydid did:key:FROMABOVE --signingkey labeler_signing.key your.handle.tld https://your.pds.host 99 + 100 + The signing key JSON, along with repo handle and DID, can be passed to 101 + labelmaker via an environment variables.