From cad75300d3a76e74d4e29642bd1417897344552e Mon Sep 17 00:00:00 2001 From: blshaer Date: Sat, 3 Jan 2026 09:34:54 +0200 Subject: [PATCH] chore: add .gitignore with standard exclusions for Python projects. --- .gitignore | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b64100c --- /dev/null +++ b/.gitignore @@ -0,0 +1,67 @@ +############################ +# Frontend files (ignore) +############################ +*.html +*.css +*.js + +############################ +# Python cache / build +############################ +__pycache__/ +*.py[cod] +*$py.class + +############################ +# Virtual environments +############################ +.venv/ +venv/ +env/ +ENV/ + +############################ +# Environment variables +############################ +.env +.env.* + +############################ +# Packaging / build output +############################ +build/ +dist/ +*.egg-info/ +.eggs/ + +############################ +# Test / coverage +############################ +.pytest_cache/ +.coverage +.coverage.* +htmlcov/ + +############################ +# Jupyter / notebooks +############################ +.ipynb_checkpoints/ + +############################ +# Logs +############################ +*.log + +############################ +# OS / editor junk +############################ +.DS_Store +Thumbs.db + +############################ +# IDEs +############################ +.vscode/ +.idea/ +*.swp +*.swo