A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.
1services:
2 tweets-2-bsky:
3 image: j4ckxyz/tweets-2-bsky:latest
4 container_name: tweets-2-bsky
5 restart: unless-stopped
6 ports:
7 - "3000:3000"
8 environment:
9 TWEETS2BSKY_DATA_DIR: /app/data
10 volumes:
11 - tweets2bsky_data:/app/data
12
13volumes:
14 tweets2bsky_data:
15 name: tweets2bsky_data