- Remove venv directory from git tracking - Add comprehensive Python virtual environment ignore rules - Prevent future accidental commits of virtual environments
33 lines
506 B
Plaintext
33 lines
506 B
Plaintext
cluster/ansible/venv
|
|
cluster/ansible/manifests/inventory.ini
|
|
.idea/*
|
|
apps/gitea-webhook-ambassador/gitea-webhook-ambassador
|
|
apps/gitea-webhook-ambassador/config.yaml
|
|
apps/gitea-webhook-ambassador/data/gitea-webhook-ambassador.db
|
|
.cursorrules
|
|
|
|
# Python virtual environments
|
|
venv/
|
|
env/
|
|
.venv/
|
|
.env/
|
|
test_env/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.log
|
|
.git
|
|
.mypy_cache
|
|
.pytest_cache
|
|
.hypothesis |