From 8a84fdbe38dd7a208df47e8e5176cccec9d828a9 Mon Sep 17 00:00:00 2001 From: Joshua Moody Date: Thu, 12 May 2022 15:24:41 +0200 Subject: [PATCH] Add .venv to gitignore This is to ignore local python virtual envs setup for dev scripts Signed-off-by: Joshua Moody --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 18f503a..cd5f925 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,7 @@ # ignores all goland project folders and files .idea *.iml -*.ipr \ No newline at end of file +*.ipr + +# python venv for dev scripts +.venv \ No newline at end of file