From 3c304797b3b1c86484276b5aebb94b5f7e1478dd Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Thu, 21 Dec 2023 20:19:17 +0100 Subject: [PATCH] Add .env to .gitignore file The .env file has been added to the .gitignore file to ensure it's not tracked in the git repository. This change helps to protect sensitive environment variable settings by preventing them from being inadvertently published within the project repository. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 81f8ef7..c9a30ec 100644 --- a/.gitignore +++ b/.gitignore @@ -57,4 +57,5 @@ crashlytics-build.properties fabric.properties # local confi files -etc/*.local.toml \ No newline at end of file +etc/*.local.toml +/.env