From fb4fd0ed36090bd7eed263ea12884c7815de9795 Mon Sep 17 00:00:00 2001 From: zhu-mengmeng <15588200382@163.com> Date: Sat, 7 Jun 2025 11:39:58 +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=A5logs=E7=9B=AE=E5=BD=95=E5=92=8C?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..26946e2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# 忽略日志文件和目录 +logs/ +*.log + +# Python虚拟环境 +venv/ +env/ +.env/ +.venv/ +__pycache__/ +*.py[cod] +*$py.class + +# IDE相关 +.idea/ +.vscode/ +*.swp +*.swo + +# 系统文件 +.DS_Store +Thumbs.db + +# 缓存文件 +__pycache__/ +.pytest_cache/ +.coverage +htmlcov/ + +# 构建文件 +build/ +dist/ +*.egg-info/ \ No newline at end of file