| 123456789101112131415161718192021222324252627282930313233 |
- # Ignore local development files
- **/.vscode
- **/.DS_Store
- # Docker Secrets, Environment Files
- **/secret.*
- **/.env
- **/.envrc
- **/.direnv
- # Ignore Ansible
- **/.ansible
- # Python
- **/__pycache__/
- **/*.py[cod]
- **/*.pyo
- **/*.pyd
- **/.venv
- **/venv/
- **/.ruff_cache/
- # Packaging
- *.egg-info/
- build/
- dist/
- # Installation tracking
- .installed-version
- # Test outputs
- tests/
- config.yaml
|