| 12345678910111213141516171819202122232425 |
- # Ignore local development files
- **/.vscode
- **/.DS_Store
- # Docker Secrets, Environment Files
- **/secret.*
- **/.env
- **/.envrc
- # Ignore Ansible
- **/.ansible
- # Python
- **/__pycache__/
- **/*.py[cod]
- **/*.pyo
- **/*.pyd
- **/.venv
- **/venv/
- # Packaging
- *.egg-info/
- # Installation tracking
- .installed-version
|