From 908eeab247ad3bd2c4d248c73f24a6bf0f566f03 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 27 Jun 2025 22:16:45 +0200 Subject: [PATCH] chore(gitignore): add rule to ignore environment files - Adds a pattern to ignore all `.env` files across the project - Helps prevent sensitive environment configurations from being committed --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1453c54 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +**/*.env \ No newline at end of file