this repo has no description
0
fork

Configure Feed

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

Update README.md

authored by

notjuliet and committed by
GitHub
a74efbe3 47c5b2e6

+10 -2
+10 -2
README.md
··· 9 9 SIGNING_KEY = "xxx" 10 10 ``` 11 11 12 - A `cursor.txt` also needs to be present. It can be left empty, and will update every minute with a new cursor. 12 + A `cursor.txt` also needs to be present. It can be left empty, and will update the file every minute with a new cursor. 13 13 14 - Create labels with `npx @skyware/labeler label add` and edit `src/constants.ts` with their related post rkeys and IDs. 14 + Create labels with `npx @skyware/labeler label add` and edit `src/constants.ts` with the related post rkeys and label IDs. 15 + 16 + The server has to be reachable outside your local network using the URL you provided during the account setup (typically, using a reverse proxy such as [Caddy](https://caddyserver.com/)): 17 + 18 + ```Caddyfile 19 + labeler.example.com { 20 + reverse_proxy 127.0.0.1:4001 21 + } 22 + ``` 15 23 16 24 ## Installation & Usage 17 25