this repo has no description
0
fork

Configure Feed

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

Update README

misc cosmetics in `.env.example`
and `package.json`

alice 28101932 455892bf

+13 -5
+4
.env.example
··· 1 + DID= 2 + SIGNING_KEY= 3 + BSKY_IDENTIFIER= 4 + BSKY_PASSWORD=
+8 -4
README.md
··· 2 2 3 3 Run `npx @skyware/labeler setup` to convert an existing account into a labeler. 4 4 5 - Create a `.env` file: 5 + Copy the `.env.example` file to `.env` and fill in the values: 6 6 7 7 ```Dotenv 8 8 DID = "did:plc:xxx" 9 9 SIGNING_KEY = "xxx" 10 + BSKY_IDENTIFIER = "xxx" 11 + BSKY_PASSWORD = "xxx" 10 12 ``` 11 13 12 14 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 15 14 - Create labels with `npx @skyware/labeler label add` and edit `src/constants.ts` with the related post rkeys and label IDs. 16 + You can create/update all labels at once by running `npx tsx src/set-labels.ts` once you filled out `src/constants.ts` with the related post rkeys, label IDs and so on. 17 + 18 + Alternatively, you can use `npx @skyware/labeler label add` and edit `src/constants.ts` after. 15 19 16 20 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 21 ··· 24 28 ## Installation & Usage 25 29 26 30 ```sh 27 - npm i 31 + pnpm i 28 32 ``` 29 33 30 34 ```sh 31 - npm start 35 + pnpm start 32 36 ```
+1 -1
package.json
··· 1 1 { 2 - "name": "pronouns-bsky", 2 + "name": "zodiacsigns-bsky", 3 3 "version": "1.0.0", 4 4 "type": "module", 5 5 "scripts": {