From c0b25a816e5f9d7c6bf70834a2b15a5c7bdaacdd Mon Sep 17 00:00:00 2001 From: Nick Gerakines <12125+ngerakines@users.noreply.github.com> Date: Tue, 19 Nov 2024 17:12:13 -0500 Subject: [PATCH] examples: Added examples for users, private users, engagement, and tags Signed-off-by: Nick Gerakines <12125+ngerakines@users.noreply.github.com> --- examples/engagement/README.md | 9 +++++++++ examples/my_stuff/README.md | 9 +++++++++ examples/private_my_stuff/README.md | 12 ++++++++++++ examples/tags/README.md | 9 +++++++++ 4 files changed, 39 insertions(+) create mode 100644 examples/engagement/README.md create mode 100644 examples/my_stuff/README.md create mode 100644 examples/private_my_stuff/README.md create mode 100644 examples/tags/README.md diff --git a/examples/engagement/README.md b/examples/engagement/README.md new file mode 100644 index 0000000..a308393 --- /dev/null +++ b/examples/engagement/README.md @@ -0,0 +1,9 @@ +# Example: Engagement + +This configuration file includes a feed for watching for engagement with your websites. + +## Instructions + +1. Create the feed and replace `ATURI` with the full record AT-URI. Should look like `at://YOUR_DID/app.bsky.feed.generator/some_rkey` +2. Update the `DID` placeholders with your DID. There are several references, so be sure to update all of them. + diff --git a/examples/my_stuff/README.md b/examples/my_stuff/README.md new file mode 100644 index 0000000..1dfb4df --- /dev/null +++ b/examples/my_stuff/README.md @@ -0,0 +1,9 @@ +# Example: My Stuff + +This configuration file shows how you can make a personalized feed based of your posts, replies to your posts, and posts where you are quoted. + +## Instructions + +1. Create the feed and replace `ATURI` with the full record AT-URI. Should look like `at://YOUR_DID/app.bsky.feed.generator/some_rkey` +2. Update the `DID` placeholders with your DID. There are several references, so be sure to update all of them. + diff --git a/examples/private_my_stuff/README.md b/examples/private_my_stuff/README.md new file mode 100644 index 0000000..657c74d --- /dev/null +++ b/examples/private_my_stuff/README.md @@ -0,0 +1,12 @@ +# Example: Private My Stuff + +This configuration file shows how you can make a private personalized feed based of your posts, replies to your posts, and posts where you are quoted. + +This feed is configured with the `allow` attribute that has a list of DIDs that can access the feed. Any request coming from a DID not in that list sees the `deny` post. + +## Instructions + +1. Create the feed and replace `ATURI` with the full record AT-URI. Should look like `at://YOUR_DID/app.bsky.feed.generator/some_rkey` +2. Update the `DID` placeholders with your DID. There are several references, so be sure to update all of them. +3. Create a new post that people will see when the do not have access to the feed. Replace the `DENIED` placeholder with the full record AT-URI. Should look like `at://YOUR_DID/app.bsky.feed.post/some_rkey` + diff --git a/examples/tags/README.md b/examples/tags/README.md new file mode 100644 index 0000000..68fafd5 --- /dev/null +++ b/examples/tags/README.md @@ -0,0 +1,9 @@ +# Example: Tags + +This configuration file shows how you can make a personalized feed of posts with one or more tags. + +## Instructions + +1. Create the feed and replace `ATURI` with the full record AT-URI. Should look like `at://YOUR_DID/app.bsky.feed.generator/some_rkey` +2. Update the `DID` placeholders with your DID. There are several references, so be sure to update all of them. + -- 2.51.2