From cacd1ccb361be0227b9bd1f5b343f3039daf1ce6 Mon Sep 17 00:00:00 2001 From: Greg Heartsfield Date: Sat, 11 Dec 2021 22:21:31 -0600 Subject: [PATCH] docs: sample program output in README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9f4e1b5..8eb15c8 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,9 @@ The provided `Dockerfile` will compile and build the server application. Use a ```console $ docker build -t nostr-rs-relay . $ docker run -p 8090:8080 --mount src=$(pwd)/nostr_data,target=/usr/src/app/db,type=bind nostr-rs-relay +[2021-12-12T04:20:47Z INFO nostr_rs_relay] Listening on: 0.0.0.0:8080 +[2021-12-12T04:20:47Z INFO nostr_rs_relay::db] Opened database for writing +[2021-12-12T04:20:47Z INFO nostr_rs_relay::db] init completed ``` Use a `nostr` client such as [`noscl`](https://github.com/fiatjaf/noscl) to publish and query events.