From 7cc231f0d32bd34ac98d5d0e28389a5c01e369a9 Mon Sep 17 00:00:00 2001 From: jango-blockchained Date: Mon, 16 Dec 2024 10:48:29 +0100 Subject: [PATCH] Update .gitignore to include additional files and directories for better dependency and environment management --- .gitignore | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 65 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a0d218e..2e337bb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,67 @@ +# Dependencies node_modules dist -.env \ No newline at end of file +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Environment variables +.env +.env.local +.env.development +.env.production +.env.test +venv/ +ENV/ +env/ + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Docker +docker-compose.yml +docker-compose.yaml +docker-compose.override.yml +docker-compose.override.yaml + +# IDEs and editors +.idea/ +.vscode/ +*.swp +*.swo +.DS_Store +Thumbs.db + +# Home Assistant +.storage +.cloud +.google.token +home-assistant.log* +home-assistant_v2.db +home-assistant_v2.db-* +. + +package-lock.json +yarn.lock +pnpm-lock.yaml +bun.lockb