social media crossposting tool. 3rd time's the charm
mastodon misskey crossposting bluesky

mention filters in readme

zenfyr.dev 3b57e083 86ba1dfb

verified
Changed files
+13 -1
+13 -1
README.md
···
## Inputs
### Bluesky PDS WebSocket
**this is meant for self-hosted PDSs that don't emmit a billion events per second.** a jetstream version will be available soon.
···
"type": "bluesky-pds-wss",
"handle": "env:BLUESKY_HANDLE", // handle (e.g. melontini.me)
"did": "env:BLUESKY_DID", // use a DID instead of handle (avoids handle resolution)
-
"pds": "end:BLUESKY_PDS" // specify Your PDS directly (avoids DID doc lookup)
}
```
···
## Inputs
+
all inputs have common options.
+
+
```json5
+
{
+
"options": {
+
"regex_filters": [ //posts matching any of the following regexes will be skipped
+
"(?i)\\b(?:test|hello|hi)\\b"
+
]
+
}
+
}
+
```
+
### Bluesky PDS WebSocket
**this is meant for self-hosted PDSs that don't emmit a billion events per second.** a jetstream version will be available soon.
···
"type": "bluesky-pds-wss",
"handle": "env:BLUESKY_HANDLE", // handle (e.g. melontini.me)
"did": "env:BLUESKY_DID", // use a DID instead of handle (avoids handle resolution)
+
"pds": "end:BLUESKY_PDS" // specify Your PDS directly (avoids DID doc lookup),
}
```