No description
Find a file
2025-06-16 17:05:44 +01:00
bsky add alias support for mentions 2025-06-16 17:05:44 +01:00
.gitignore add files 2025-06-05 07:22:57 +01:00
go.mod add files 2025-06-05 07:22:57 +01:00
go.sum add files 2025-06-05 07:22:57 +01:00
main.go add alias support for mentions 2025-06-16 17:05:44 +01:00
README.md update formatting 2025-06-08 14:06:32 +01:00

bsky2tg

bsky2tg will mirror posts from your Bluesky account to a Telegram channel through a bot. It supports creation and deletion of posts on Bluesky but not the other way.


Usage

Create a .env file with the following:

TG_TOKEN=
TG_CHANNEL_ID=
BSKY_HANDLE=
BSKY_PASSWORD=

To run:

podman run -it --name bsky2tg_<profile> \
  --env-file /path/to/.env \
  git.zio.sh/astra/bsky2tg:latest

Or without .env file:

podman run -it --name bsky2tg_<profile> \
  --env TG_TOKEN= \
  --env TG_CHANNEL_ID= \
  --env BSKY_HANDLE= \
  --env BSKY_PASSWORD= \
  git.zio.sh/astra/bsky2tg:latest