From b2f00902369447d9eef9d34d55439b9dd65fd919 Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Mon, 30 Mar 2026 09:07:48 +0200 Subject: [PATCH] update gitignore --- .gitignore | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 82e1bff..29ae3d6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,31 @@ +# Python/local environment (prototype legacy) __pycache__/ +**/__pycache__/ venv/ .venv/ +.pytest_cache/ +*.pyc +*.pyo + +# Local-only config +miner.conf config.py + +# C/C++ build artifacts *.o +*.a +*.so + +# Binaries produced by Makefile miner launcher -miner.conf +bench_hash +test_sha256_backend +test_miner_regression + +# Profiling / PGO artifacts +.pgo/ +*.gcda +*.gcno +*.profraw +*.profdata