Skip to content

Commit

Permalink
chore: add .venv/venv to .gitignore
Browse files Browse the repository at this point in the history
best practices with local python development is to create a virtual
environment.  The most common are either .venv or venv folders in
the root of the repo.

Created via:

`python -m venv .venv` or `python -m venv venv`

I'm adding these folders to the .gitignore to avoid them being accidentally
source controlled

Signed-off-by: jmeridth <[email protected]>
  • Loading branch information
jmeridth committed Sep 4, 2024
1 parent 914839f commit e6ed9f5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ pkg/
*~
vendor/
.DS_Store
.venv
venv

0 comments on commit e6ed9f5

Please sign in to comment.