From b8e8d8edab1f75f1a94f91855d36c80e44cc9b56 Mon Sep 17 00:00:00 2001 From: HoangBD Date: Thu, 4 Dec 2025 11:03:44 +0700 Subject: [PATCH] chore: update .gitignore to ignore build artifacts and editor files --- .gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.gitignore b/.gitignore index e2a09ccf..af418b0e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,34 @@ /internal/core/VERSION /internal/servers/hls/hls.min.js /internal/staticsources/rpicamera/mtxrpicam_*/ +.env.example +*.env +*.exe +*.log + +# Build outputs +bin/ +/build/ +/dist/ +/out/ + +# Go +/vendor/ +*.test + +# Editors and OS +.vscode/ +.idea/ +*.swp +.DS_Store +Thumbs.db + +# Node (frontend) +client/node_modules/ + +# Binary artifact (explicit) +/mediamtx.exe + +# Secrets (already included above, keep extra patterns) +.env.local +.env.* \ No newline at end of file