File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ A very simple server that verifies Bluesky (atproto) handles using the
44[ HTTPS well-known Method] [ atproto/resolution/well-known ] ; an alternative to
55managing many DNS records.
66
7+ ## Quickstart
8+
9+ ``` console
10+ curl -LO https://github.com/prompt/handles-server/releases/download/v1/handles-server-linux
11+ chmod +x handles-server-linux
12+ DID_PROVIDER="memory" MEMORY_DOMAINS="example.com" MEMORY_DIDS="alice.example.com@did:plc:001" \
13+ ./handles-server-linux
14+ ```
15+
716## Implementation
817
918A ` handle ` is a hostname (e.g: ` alice.example.com ` ) which the server may or may
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import (
1414
1515type Config struct {
1616 Host string `env:"HOST" envDefault:"localhost"`
17- Port string `env:"PORT" envDefault:"80 "`
17+ Port string `env:"PORT" envDefault:"8080 "`
1818
1919 Logger * slog.Logger `env:"LOG_LEVEL" envDefault:"error"`
2020
You can’t perform that action at this time.
0 commit comments