this repo has no description
0
fork

Configure Feed

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

update pronouns

+11 -3
+9
src/constants.ts
··· 16 16 "e/em/eir": "e", 17 17 "sier/siehn/siere": "sier", 18 18 "ey/em/eir": "ey", 19 + "shey/sheir/sher": "shey", 20 + "voi/void": "voi", 21 + "mew/mews": "mew", 19 22 }; 20 23 21 24 export const URIs: Record<string, string> = { ··· 51 54 "sier/siehn/siere", 52 55 "at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kwu6b3cnd52k": 53 56 "ey/em/eir", 57 + "at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kwu7n26cgm2m": 58 + "shey/sheir/sher", 59 + "at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kwue4lqwjb2q": 60 + "voi/void", 61 + "at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kwueewr2p22j": 62 + "mew/mews", 54 63 }; 55 64 56 65 export const DID = process.env.DID ?? "";
+2 -3
src/main.ts
··· 9 9 const agent = await getAgent(); 10 10 let cursorSave = 0; 11 11 12 - // add firehose cursor save 13 - //const firehose = new Firehose({ cursor: "760303563" }); 14 - const firehose = new Firehose(); 12 + // TODO: save cursor to a file 13 + const firehose = new Firehose({ cursor: process.env.CURSOR ?? "" }); 15 14 16 15 firehose.on("error", ({ cursor }) => { 17 16 console.log(`Firehose errored on cursor: ${cursor}`);