From 5dc756f0626093590468563ad501bbcf799795cf Mon Sep 17 00:00:00 2001 From: Om-Singh1808 Date: Thu, 4 Sep 2025 04:14:13 +0530 Subject: [PATCH] Clean up: Remove all cache files and add comprehensive .gitignore --- .gitignore | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index db07324e..ebe3ad06 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ +# Dependencies +node_modules/ +*/node_modules/ +**/node_modules/ + # Python cache files __pycache__/ */__pycache__/ @@ -6,6 +11,12 @@ __pycache__/ *.pyo *.pyd +# Cache files +.cache/ +*/cache/ +**/cache/ +*.cache + # Environment files .env .env.local @@ -45,7 +56,6 @@ ehthumbs.db Thumbs.db # Node.js (for frontend) -node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* @@ -137,9 +147,6 @@ docs/_build/ # Lock files package-lock.json yarn.lock -Pipfile.lock # Cache directories -.cache/ -.pytest_cache/ .pytest_cache \ No newline at end of file