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 troubleshooting guide for common update and PM2 issues

jack 078d373d 650a521e

+26
+26
TROUBLESHOOTING.md
··· 1 + # tweets-2-bsky 2 + 3 + A powerful tool to crosspost Tweets to Bluesky, supporting threads, videos, and high-quality images. 4 + 5 + ## Troubleshooting 6 + 7 + ### Update Failures / Git Conflicts 8 + If `./update.sh` fails with "Pulling is not possible because you have unmerged files" or similar git errors: 9 + 10 + 1. Reset your local repository to match the remote (Warning: this discards local changes to tracked files): 11 + ```bash 12 + git reset --hard origin/master 13 + ``` 14 + 2. Run the update script again: 15 + ```bash 16 + ./update.sh 17 + ``` 18 + 19 + ### PM2 "MODULE_NOT_FOUND" Error 20 + If you see errors about `npm` not being found in the logs after an update: 21 + 22 + 1. Run the repair script: 23 + ```bash 24 + chmod +x repair_pm2.sh 25 + ./repair_pm2.sh 26 + ```