commit 8dc8759b81c948d500897d8baf9aeb826e605ee6 Author: MaddoScientisto Date: Sun Feb 15 14:03:02 2026 +0100 Add .gitignore (C#/Python) and enable Git LFS for zip, dll, exe, .weights diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..35c7862 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# Git LFS: track large/binary files +*.zip filter=lfs diff=lfs merge=lfs -text +*.dll filter=lfs diff=lfs merge=lfs -text +*.exe filter=lfs diff=lfs merge=lfs -text +*.weights filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..825bd1d --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# .gitignore — C# (Visual Studio) + Python +# ------------------------------------------------------------------ + +# ----- Visual Studio / C# ----- +.vs/ +*.user +*.userosscache +*.suo +*.sln.docstates +*.suo +*.cache +# Build folders +[Bb]in/ +[Oo]bj/ +# Rider/IDE +.idea/ +# NuGet packages +*.nupkg +# Test results +TestResults/ + +# ----- Python ----- +# Byte-compiled / optimized +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +build/ +dist/ +*.egg-info/ +.eggs/ +parts/ +sdist/ + +# Virtual environments — ignore any folder starting with "venv" +**/venv*/ +venv*/ +.venv/ +env/ +ENV/ + +# Jupyter +.ipynb_checkpoints/ + +# Unit test / coverage +.pytest_cache/ +.coverage +.coverage.* +htmlcov/ +.tox/ +.nox/ + +# mypy +.mypy_cache/ + +# VS Code settings +.vscode/ + +# Misc +*.log + +# NOTE: We DO NOT ignore binary types (zip, dll, exe, .weights) here because +# they are tracked via Git LFS (configured in .gitattributes / git lfs track).