From 6038f67bac1276a1a6411ceb46d66aa5d6c47665 Mon Sep 17 00:00:00 2001 From: Ahmadreza Fatemikia <83141114+ahmadrezafatemikia@users.noreply.github.com> Date: Thu, 9 Apr 2026 19:59:50 +0800 Subject: [PATCH] chore: update .gitignore to ignore local environment and Go cache files - Added .env and .gocache/ to .gitignore to prevent local environment variables and Go cache files from being tracked. --- .gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 98428843..bc374355 100644 --- a/.gitignore +++ b/.gitignore @@ -36,6 +36,7 @@ x-ui.db # Ignore Docker specific files docker-compose.override.yml -# Ignore .env (Environment Variables) file -.env.gocache/ +# Ignore local env and Go cache folders +.env +.gocache/ .gopath/