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.

Add repair_pm2.sh script to manually fix environment issues

jack 650a521e 9441fe97

+19
+19
repair_pm2.sh
··· 1 + #!/bin/bash 2 + echo "🔧 Repairing PM2 Process Environment..." 3 + 4 + PROCESS_NAME="tweets-2-bsky" 5 + if pm2 describe twitter-mirror &> /dev/null; then 6 + PROCESS_NAME="twitter-mirror" 7 + fi 8 + 9 + echo "Found process: $PROCESS_NAME" 10 + echo "Deleting process..." 11 + pm2 delete $PROCESS_NAME 12 + 13 + echo "Starting process with fresh environment..." 14 + pm2 start dist/index.js --name $PROCESS_NAME 15 + 16 + echo "Saving PM2 list..." 17 + pm2 save 18 + 19 + echo "✅ Repair complete! The MODULE_NOT_FOUND error should be gone."