From 06ff8718ad432dfe4d51cb8f36df3137341da3d2 Mon Sep 17 00:00:00 2001 From: Nick Bozhenko <21245729+cheeeee@users.noreply.github.com> Date: Wed, 16 Jul 2025 17:06:05 -0400 Subject: [PATCH] Add binary and coverage files to .gitignore - Add aptly/aptly binary executable - Add coverage_report.html and other coverage files - Prevent these generated files from being committed --- .gitignore | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/.gitignore b/.gitignore index f2333751..8a8cb419 100644 --- a/.gitignore +++ b/.gitignore @@ -74,3 +74,42 @@ docs/docs.go docs/swagger.json docs/swagger.yaml docs/swagger.conf +.secrets + +# Coverage reports +*.out +coverage.html +*_coverage.html + +# Binaries +aptly-binary +aptly-test + +# Downloaded archives +*.tar.gz + +# Test artifacts +test_results.log + +# Python virtual environments +system/venv/ +venv/ + +# act local CI runner +.actrc + +# Backup files +*.backup +*.bak + +# Temporary directories +coverage/ +scripts/ + +# Binary executables +aptly/aptly + +# Coverage reports +coverage_report.html +*.coverage +coverage.out