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.
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix: Update update.sh to restart PM2 with updated environment variables

jack 170e0aef 7b077490

+7 -1
+7 -1
update.sh
··· 38 38 fi 39 39 40 40 echo "✅ Update complete!" 41 - echo "⚠️ Please restart your application service now (e.g., 'pm2 restart tweets-2-bsky' or stop and start the node process)." 41 + 42 + if command -v pm2 &> /dev/null; then 43 + echo "🔄 Restarting PM2 process with updated environment..." 44 + pm2 restart tweets-2-bsky --update-env || pm2 restart all --update-env 45 + else 46 + echo "⚠️ PM2 not found. Please restart your application manually." 47 + fi