Skip to content
This repository was archived by the owner on Aug 10, 2024. It is now read-only.

Commit 74c459b

Browse files
committed
configs/BLUESKY.md
1 parent df4e3fd commit 74c459b

File tree

3 files changed

+62
-0
lines changed

3 files changed

+62
-0
lines changed

cloudflare-worker/worker.js

+11
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,17 @@ const CONFIGS = {
292292
"avatar": "avatar.png",
293293
"isEnabled": true
294294
},
295+
"bluesky-app": {
296+
"recordName": "bluesky-app",
297+
"isEnabled": false,
298+
"displayName": "Bluesky App",
299+
"description": "Updates about the app",
300+
"searchTerms": [
301+
"at://did:plc:z72i7hdynmk6r22z27h6tvur",
302+
"at://did:plc:ewvi7nxzyoun6zhxrhs64oiz"
303+
],
304+
"avatar": "configs/avatar2.png"
305+
},
295306
"science-emojis": {
296307
"recordName": "science-emojis",
297308
"isEnabled": false,

configs/BLUESKY.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
# recordName
3+
4+
> This is the feed's ID which can be letters, numbers, or dashes. Spaces are not allowed. Maximum length is 15 characters.
5+
6+
bluesky-app
7+
8+
# isEnabled
9+
10+
> Whether this feed should be published by the "Publish Feed Generators" step. Set to `true` or `false`.
11+
12+
false
13+
14+
# displayName
15+
16+
> This is the title of the custom feed. Maximum length is 24 characters.
17+
18+
Bluesky App
19+
20+
# description
21+
22+
> This is the description of the feed.
23+
24+
Updates about the app
25+
26+
# searchTerms
27+
28+
> Search Terms are now more powerful. There are two types:
29+
>
30+
> - Pinned posts: links such as `https://bsky.app/profile/saddymayo.bsky.social/post/3jxju2wwap22e` will pin at the top of the feed. One link per line, please.
31+
> - Keywords (maximum 5 terms): Test these in [https://bsky.app/search](https://bsky.app/search). `AND` is implicit, so `cat dog` on one line will require both `cat` and `dog`. You can use quotes as well `"hot dog"`.
32+
33+
- https://bsky.app/profile/bsky.app
34+
- https://bsky.app/profile/atproto.com
35+
36+
# avatar
37+
38+
> This must link to an image (PNG or JPEG) in the same directory as this CONFIG.md. It doesn't have to be called `avatar2.png`, but just be sure this CONFIG.md points to the correct file.
39+
40+
![](avatar2.png)

feed-generator/configs.json

+11
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,17 @@
1414
"avatar": "avatar.png",
1515
"isEnabled": true
1616
},
17+
"bluesky-app": {
18+
"recordName": "bluesky-app",
19+
"isEnabled": false,
20+
"displayName": "Bluesky App",
21+
"description": "Updates about the app",
22+
"searchTerms": [
23+
"at://did:plc:z72i7hdynmk6r22z27h6tvur",
24+
"at://did:plc:ewvi7nxzyoun6zhxrhs64oiz"
25+
],
26+
"avatar": "configs/avatar2.png"
27+
},
1728
"science-emojis": {
1829
"recordName": "science-emojis",
1930
"isEnabled": false,

0 commit comments

Comments
 (0)