From 6b7e396bb19367ba27bc04f8ebbabda08dbe8624 Mon Sep 17 00:00:00 2001 From: st2411020124 Date: Thu, 8 Jan 2026 22:19:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0.gitignore=E6=96=87=E4=BB=B6?= =?UTF-8?q?=EF=BC=8C=E5=BF=BD=E7=95=A5=E7=BC=96=E8=AF=91=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E3=80=81=E6=97=A5=E5=BF=97=E6=96=87=E4=BB=B6=E5=92=8C=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E6=96=87=E4=BB=B6=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc40329 --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# 编译文件 +__pycache__/ +*.pyc +*.pyo +*.pyd + +# 日志文件 +*.log +*.log.* + +# 测试文件 +*.pyc + +# 环境变量文件 +.env +.env.local +.env.*.local + +# 临时文件 +*.tmp +*.temp + +# IDE文件 +.vscode/ +.idea/ +*.swp +*.swo + +# 操作系统文件 +.DS_Store +Thumbs.db + +# 安装包文件 +*.egg-info/ +dist/ +build/ + +# 虚拟环境 +venv/ +env/ +.venv/ +.env/