Add .venv/ to .dockerignore and .gitignore for virtual env compatibility

Include .venv/ alongside venv/ to align with common Python virtual
environment practices as recommended in the official documentation.
This commit is contained in:
Peter Dave Hello
2025-04-18 21:43:05 +08:00
parent 58f6943b12
commit e6ee2b96e2
2 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
.venv/
venv/ venv/
pr_agent/settings/.secrets.toml pr_agent/settings/.secrets.toml
pics/ pics/

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
.lsp/ .lsp/
.vscode/ .vscode/
.env .env
.venv/
venv/ venv/
pr_agent/settings/.secrets.toml pr_agent/settings/.secrets.toml
__pycache__ __pycache__