From 69eed7463fa2c1c2d9f6ee3a3d92e9d1e8a2c865 Mon Sep 17 00:00:00 2001 From: Marcus <1922576605@qq.com> Date: Sat, 28 Jun 2025 20:05:46 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 116 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..669d75e --- /dev/null +++ b/.gitignore @@ -0,0 +1,116 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Virtual environment +venv/ +env/ +ENV/ +.venv/ +.ENV/ + +# pipenv +Pipfile +Pipfile.lock + +# Poetry +poetry.lock +poetry.toml + +# Pyre type checker +.pyre/ + +# Mypy type checker +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pytest +.pytest_cache/ + +# Coverage reports +htmlcov/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover + +# Jupyter Notebook +.ipynb_checkpoints + +# IDEs +.idea/ +.vscode/ +.vscode/* +!.vscode/extensions.json + +# macOS +.DS_Store + +# Logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +# Local environment variables +.env +.env.* +*.env + +# Docker +*.pid +*.seed +*.pid.lock +docker-compose.override.yml + +# Build files +build/ +dist/ +dist-ssr/ +*.egg-info/ +.eggs/ +*.whl + +# Sphinx documentation +docs/_build/ + +# PyInstaller +*.manifest +*.spec + +# Celery +celerybeat-schedule +celerybeat.pid + +# Django stuff: +*.sqlite3 +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# FastAPI specific +*.db + +# Node.js +node_modules/ +*.local + +# Editor files +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw?