chore: add .gitignore with standard exclusions for Python projects.

This commit is contained in:
blshaer 2026-01-03 09:34:54 +02:00
parent 689752b14c
commit cad75300d3

67
.gitignore vendored Normal file
View File

@ -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