its for when you want to get like notifications for your reposts

docs: update readme

ptr.pet ebca1520 41963909

verified
Changed files
+18 -16
+18 -16
README.md
···
one current limitation is that like records that were made
before the server started are not fetched, this means that
if someone unlikes a repost before the server was started
-
you won't get a notification for this. (this is solvable
-
and was solved but dusk decided it didn't matter too much
-
to keep in, which makes everything simpler)
+
you won't get a notification for this.
-
a server is hosted at `likes.gaze.systems` if you want to
-
not host your own.
+
a server is hosted at `likes.gaze.systems` if you don't want
+
to host your own.
### usage
+
+
you can use the browser extension (see building section)
+
to keep track of the likes.
+
you can also use the provided webapp, which is hosted at
+
`https://likes.gaze.systems/`.
+
+
#### details
open a websocket at path `/subscribe/:did` where `did` is
your DID (or any other user you want to stalk.) by default
···
}
```
-
you can also use the provided webapp to monitor any likes.
-
it is hosted at `https://likes.gaze.systems/`.
-
### building
-
`go build`
+
if using nix, see available packages with
+
`nix flake show git+https://tangled.sh/@poor.dog/bsky-repost-likes`.
-
or
-
-
`nix build git+https://tangled.sh/@poor.dog/bsky-repost-likes`
-
-
---
-
-
to build the webapp, get pnpm and then `pnpm i && pnpm build`
+
otherwise:
+
- to build the server, do `cd server && go build`,
+
- to build the webapp, get pnpm and then
+
`cd webapp && pnpm i && pnpm build`,
+
- to build the extension, first build the webapp and then run
+
`cd extension && pnpm i && pnpm build`.