From 15b214268a158a48b95c2cfe95c2959982435123 Mon Sep 17 00:00:00 2001 From: wuzhao Date: Mon, 9 Feb 2026 18:05:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9Egitignore=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..15d572f --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# OS / Editor +.DS_Store +Thumbs.db +.idea/ +.vscode/ + +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.so +.python-version +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ +.coverage +.coverage.* +htmlcov/ +.tox/ +.nox/ +.venv/ +venv/ +env/ +ENV/ +*.egg-info/ +*.egg + +# Node / Frontend +node_modules/ +frontend/node_modules/ +frontend/dist/ +frontend/.vite/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Build / Runtime logs +*.log +logs/ +tmp/ +temp/ + +# ML / Training / Inference outputs +runs/ +backend/runs/ +data/runs/ +backend/static/results/ +data/static/results/ + +# Local data artifacts +data/uploads/ +data/cache/ + -- Gitee