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