forked from alaguraj/odoo-testing-addons
Updated .gitignore to exclude virtual environments, testing artifacts, temporary files, and database dumps.
This commit is contained in:
parent
55e6b70134
commit
efa9b1e14a
34
.gitignore
vendored
34
.gitignore
vendored
@ -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
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user