Updated .gitignore to exclude virtual environments, testing artifacts, temporary files, and database dumps.

This commit is contained in:
Alaguraj0361 2026-03-04 17:32:22 +05:30
parent 55e6b70134
commit efa9b1e14a
16 changed files with 29 additions and 5 deletions

34
.gitignore vendored
View File

@ -5,6 +5,8 @@ __pycache__/
*.so
.Python
env/
venv/
.venv/
build/
develop-eggs/
dist/
@ -20,6 +22,15 @@ wheels/
*.egg-info/
.installed.cfg
*.egg
.pytest_cache/
.tox/
.nox/
.coverage
htmlcov/
nosetests.xml
coverage.xml
*.cover
*.log
# Odoo artifacts
*.log
@ -27,19 +38,26 @@ odoo.conf
/data/
/filestore/
/sessions/
/logs/
/dump/
# OS artifacts
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
*.tmp
*.bak
*.swp
*.swo
*~
# IDEs
.idea/
.vscode/
*.swp
*.swo
*~
.history/
*.sublime-project
*.sublime-workspace
# Debug/Temp scripts found in project
inspect_*.py
@ -53,10 +71,10 @@ txt.py
update_error.txt
update_log.txt
addons/*.png
blog_posts_*.json
# Local config/environment
.env
.venv
docker-compose.override.yml
# Log / debug dump files
@ -66,7 +84,13 @@ docker-compose.override.yml
shop_output.html
upgrade_log.txt
# Database dumps
*.sql
*.sqlite
*.dump
# One-off scripts (keep .ps1 compose scripts but ignore others)
cleanup_*.py
fix_*.py
blog_posts_*.json
test_*.py
temp_*.py