From 7067f0872bdd8b456d52b3f9dab4834fd0798977 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sun, 11 May 2025 15:33:05 +0200 Subject: [PATCH] chore(gitignore): update ignored files for environment and build - Add `.env` files to the ignore list to exclude environment configs - Retain `dist/` directory in the ignore list for build artifacts --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8a7b3f9..98ee820 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *__pycache__* -dist/ \ No newline at end of file +dist/ +**/.env \ No newline at end of file