From 604a112f8a0e05bd5eb9d0376dee5f83190be18c Mon Sep 17 00:00:00 2001 From: iammm0 Date: Wed, 7 Jan 2026 11:57:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0.gitignore=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f4811d --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +env/ +venv/ +ENV/ +.venv + +# 环境变量 +.env +.env.local + +# 数据库文件 +*.db +*.sqlite +*.sqlite3 + +# IDE +.idea/ +.vscode/ +*.iml + +# 临时文件 +*.tmp +*.log +*.swp +*.swo +*~ + +# 提交消息临时文件 +commit_msg_*.txt +commit_plan.txt + +# 操作系统 +.DS_Store +Thumbs.db + +# 构建文件 +build/ +dist/ +*.egg-info/ +