https://github.com/cheeplusplus/kauko-bsky-feeds
Kauko's bluesky feeds
https://github.com/cheeplusplus/kauko-bsky-feeds
bluesky bluesky-feed bluesky-generator
Last synced: about 2 months ago
JSON representation
Kauko's bluesky feeds
- Host: GitHub
- URL: https://github.com/cheeplusplus/kauko-bsky-feeds
- Owner: cheeplusplus
- Created: 2024-10-22T04:15:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-27T21:04:15.000Z (11 months ago)
- Last Synced: 2025-07-27T23:17:36.729Z (11 months ago)
- Topics: bluesky, bluesky-feed, bluesky-generator
- Language: C#
- Homepage:
- Size: 283 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kauko's bsky feeds
This is mostly my own deployment of feeds to my personal bsky account, [kauko.biosynth.link](https://bsky.app/profile/kauko.biosynth.link).
I wanted to open source it since I couldn't find any feed generators written in C#.
## Notes
This requires a file called `bsky.config.json` that looks like this:
```
{
"BskyConfig": {
"Auth": {
"Username": "YOUR_BSKY_HANDLE",
"Password": "YOUR_APP_PASSWORD"
},
"Identity": {
"Hostname": "SERVER_HOSTNAME",
"PublishedAtUri": "at://YOUR_BSKY_DID"
},
"FeedProcessors": {
"FEED_NAME": {
"Type": "TimelineMinusList",
"Config": {
"DisplayName": "SAMPLE DISPLAY NAME",
"Description": "SAMPLE DESCRIPTION",
"ListUri": "at://YOUR_BSKY_DID/app.bsky.graph.list/TARGET_LIST_ID"
}
}
}
}
}
```
To publish it as a Docker container, run
```
dotnet publish --os linux --arch x64 /t:PublishContainer
```