Skip to content

Commit

Permalink
Add virtualenv locations and .env file to .gitignore
Browse files Browse the repository at this point in the history
- Add common in-tree locations for virtualenv environments to .gitignore (.env, .venv/, venv/)
- .env is also commonly used to store potentially confidential information such as API keys, so should probably be in here as a matter-of-course safety measure anyway, even though this project doesn't use such files.
  • Loading branch information
blaedd committed Feb 26, 2023
1 parent 8e74f06 commit a5d3ec7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,8 @@ share/
.coverage*
# Written by setuptools_scm.
phonenumber_field/version.py
# python virtualenv
.venv/
venv/
# python virtualenv or environment file (potential secrets)
.env

0 comments on commit a5d3ec7

Please sign in to comment.