62 lines
718 B
Plaintext
62 lines
718 B
Plaintext
# Exclude Docker files
|
|
docker-compose.yml
|
|
docker-compose.*.yml
|
|
Dockerfile*
|
|
.dockerignore
|
|
|
|
# Exclude config files
|
|
*.conf
|
|
config/
|
|
odoo.conf
|
|
|
|
# Exclude development files
|
|
*.sh
|
|
scripts/
|
|
addons/
|
|
website/
|
|
screenshots/
|
|
temp_*
|
|
*.backup
|
|
*-backup.html
|
|
*-test.html
|
|
|
|
# Exclude documentation
|
|
*.md
|
|
README*
|
|
CLAUDE*
|
|
DEPLOYMENT*
|
|
IMPLEMENTATION*
|
|
SUBAGENTS*
|
|
pages-status.json
|
|
validation-report.md
|
|
missing-keywords*.md
|
|
|
|
# Exclude OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Exclude editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Exclude version control
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Exclude logs and temp files
|
|
*.log
|
|
*.tmp
|
|
nul
|
|
|
|
# Exclude local environment files
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Exclude test files
|
|
test-*.html
|
|
*-test.*
|
|
*.test.* |