From 0fbfd685852b666e85162e0c801e2528624f0018 Mon Sep 17 00:00:00 2001 From: Guillem Hernandez Sola Date: Tue, 28 Apr 2026 06:45:40 +0200 Subject: [PATCH] Update .gitignore to ignore the entire .vscode folder --- .vscode/extensions.json | 5 +++++ sync_runner.sh | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..faf8a76 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "monicaim.monica-code" + ] +} \ No newline at end of file diff --git a/sync_runner.sh b/sync_runner.sh index 58676ac..1e987cd 100755 --- a/sync_runner.sh +++ b/sync_runner.sh @@ -35,7 +35,13 @@ pip install atproto tweety-ns playwright httpx arrow python-dotenv -q playwright install chromium # Install the required Linux system libraries -playwright install-deps chromium +playwright install-deps chromium + +# 7. Clean up (Optional) +# Deactivate the virtual environment +deactivate +# Remove the virtual environment (if you want to start fresh next time) +# rm -rf venv # 5. Run the script echo "▶️ Running the sync script..."