- Creados archivos .gitignore para cada tipo de proyecto con reglas específicas - Para Odoo, se excluye de seguimiento la carpeta data y su contenido - Integrados en project_new.sh para copiarse automáticamente al crear un proyecto 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			43 lines
		
	
	
		
			No EOL
		
	
	
		
			490 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			No EOL
		
	
	
		
			490 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| # Ansible gitignore
 | |
| 
 | |
| # Ansible roles downloaded from Galaxy
 | |
| roles/*
 | |
| !roles/requirements.yml
 | |
| 
 | |
| # Ansible vault password file
 | |
| .vault_pass
 | |
| 
 | |
| # Inventory files with sensitive data
 | |
| inventory/group_vars/*/vault.yml
 | |
| inventory/host_vars/*/vault.yml
 | |
| 
 | |
| # Retry files
 | |
| *.retry
 | |
| 
 | |
| # Log files
 | |
| *.log
 | |
| 
 | |
| # Runtime files
 | |
| *.pid
 | |
| 
 | |
| # Python artifacts
 | |
| __pycache__/
 | |
| *.py[cod]
 | |
| *$py.class
 | |
| *.so
 | |
| .Python
 | |
| env/
 | |
| build/
 | |
| develop-eggs/
 | |
| dist/
 | |
| downloads/
 | |
| eggs/
 | |
| .eggs/
 | |
| lib/
 | |
| lib64/
 | |
| parts/
 | |
| sdist/
 | |
| var/
 | |
| *.egg-info/
 | |
| .installed.cfg
 | |
| *.egg |