54 lines
595 B
Plaintext
54 lines
595 B
Plaintext
# .gitignore for an Odoo 18 custom module
|
|
|
|
# Byte-compiled / cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
env/
|
|
venv/
|
|
.venv/
|
|
pip-wheel-metadata/
|
|
|
|
# Editor / IDE
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-*
|
|
*.tm_properties
|
|
|
|
# OS / miscellaneous
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs / runtime / temp
|
|
*.log
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
|
|
# Test / coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
|
|
# Packaging / build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Node / frontend
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-debug.log
|
|
yarn-error.log
|
|
parcel-cache/
|
|
.cache/
|
|
|
|
# Local secrets/config
|
|
.env
|
|
local.py
|
|
secrets.* |