From 6f5b45449dcd29136d811afb247275323fe19952 Mon Sep 17 00:00:00 2001 From: huangzhenpc Date: Wed, 26 Feb 2025 18:30:09 +0800 Subject: [PATCH] first commit --- .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d71e8c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# 忽略 old 文件夹 +old/ +old/* + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# 虚拟环境 +venv/ +ENV/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# 日志文件 +*.log + +# 本地配置文件 +.env +.env.local \ No newline at end of file