From 9be9f25ee8889b255c11c8c3acb255b6f7c4e132 Mon Sep 17 00:00:00 2001 From: p46nuwtki <1577964316@qq.com> Date: Sat, 1 Nov 2025 17:29:51 +0800 Subject: [PATCH] ADD file via upload --- .gitignore | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1366ca0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Environment +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +# Testing +pytest_cache/ +.coverage +*.cover + +# Distribution +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Logs +*.log +logs/ + +# Temporary files +*.tmp +*.temp +.cache \ No newline at end of file