File tree 2 files changed +10
-1
lines changed
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
4
4
[ HTTPS well-known Method] [ atproto/resolution/well-known ] ; an alternative to
5
5
managing many DNS records.
6
6
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
+
7
16
## Implementation
8
17
9
18
A ` 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 (
14
14
15
15
type Config struct {
16
16
Host string `env:"HOST" envDefault:"localhost"`
17
- Port string `env:"PORT" envDefault:"80 "`
17
+ Port string `env:"PORT" envDefault:"8080 "`
18
18
19
19
Logger * slog.Logger `env:"LOG_LEVEL" envDefault:"error"`
20
20
You can’t perform that action at this time.
0 commit comments