From 56cd4e4a8e34210a16b0b24002888bc94934a4dd Mon Sep 17 00:00:00 2001 From: THORSTEN SCHMINKEL Date: Mon, 12 Feb 2024 18:05:19 +0100 Subject: [PATCH] Add .env to .gitignore file The update includes adding .env to the .gitignore file. This will prevent any potential upload of confidential environment variables which often exist in .env files to the repository. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index a547bf3..50c8dda 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ dist-ssr *.njsproj *.sln *.sw? + +.env