From a5d3ec779115677303d24c737ed64634dc6d792c Mon Sep 17 00:00:00 2001 From: David MacKinnon Date: Sun, 26 Feb 2023 12:43:12 +1100 Subject: [PATCH] Add virtualenv locations and .env file to .gitignore - 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. --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index e85100e8..252369ed 100644 --- a/.gitignore +++ b/.gitignore @@ -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