From 8b105d8affd1d29780680b596cd382c57a1d248f Mon Sep 17 00:00:00 2001 From: Metrax Date: Tue, 17 May 2022 16:31:05 +0200 Subject: [PATCH] Adding venv and yarn-error.log to gitignore venv: in the wiki, the installation is described with creating the venv into "venv", but only ".venv" is in gitignore yarn-error.log: file is created if yarn fails, it should not be commited to the repo accidentally --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 4a62dbb..539325f 100644 --- a/.gitignore +++ b/.gitignore @@ -38,5 +38,7 @@ node_modules powerdnsadmin/static/generated .webassets-cache .venv* +venv* .pytest_cache .DS_Store +yarn-error.log