From 97a3b750e99458f045d625e7eb331f7268044122 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Fri, 19 Dec 2025 12:59:49 +1100 Subject: [PATCH] Add .gitignore for Python and Node projects --- .gitignore | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a46540d --- /dev/null +++ b/.gitignore @@ -0,0 +1,83 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +env/ +venv/ +ENV/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# FastAPI / Uvicorn +*.db +*.sqlite +*.sqlite3 + +# Environment variables +.env +.env.local +.env.*.local + +# IDEs +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# Node +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* +dist/ +dist-ssr/ +*.local + +# Testing +.coverage +htmlcov/ +.pytest_cache/ +coverage/ + +# Logs +logs/ +*.log + +# OS +Thumbs.db +.DS_Store + +# Database +*.db +*.sqlite +family_hub.db + +# Docker +.dockerignore + +# Temporary files +*.tmp +*.temp +*.bak +*.swp +*~