From fabc106396c6ba240e8887e02b45706e82aedabf Mon Sep 17 00:00:00 2001 From: xiaji Date: Wed, 10 Dec 2025 17:19:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E5=BF=BD=E7=95=A5=E7=9A=84gi?= =?UTF-8?q?t=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b6eefb4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +# Virtual environments +venv/ +.venv/ +env/ +.virtualenv/ +virtualenv/ + +# Python cache +__pycache__/ +*.pyc +*.pyo +*.pyd + +# Database +*.sqlite3 +*.db + +# Media files +media/ + +# Static files +static/ + +# Environment variables +.env +.env.local +.env.*.local + +# Logs +*.log +logs/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Testing +.coverage +htmlcov/ +.pytest_cache/ +.tox/ + +# Build +build/ +dist/ +*.egg-info/ + +# Other +*.bak +*.tmp \ No newline at end of file