From cc232999f0f4992763751b3b5625ad1784e0c2ed Mon Sep 17 00:00:00 2001 From: Ben Melchior Date: Tue, 15 Apr 2025 20:35:22 +0200 Subject: [PATCH] Update .gitignore to include .env file and ensure .DS_Store is ignored - Added .env to the .gitignore to prevent sensitive environment configuration from being tracked. - Confirmed that .DS_Store files are ignored to maintain a clean repository. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1bb4956..35f414b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ Cargo.lock /target -.DS_Store \ No newline at end of file +.DS_Store +.env \ No newline at end of file