rank_backend/.gitignore
Qyir dbef5a98a8 Add chromedriver.exe to Git repository
- Update .gitignore to include chromedriver.exe while excluding other driver files
- ChromeDriver is essential for Selenium automation and should be version controlled

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-17 11:11:37 +08:00

56 lines
591 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Logs
*.log
logs/
miniprogram_api.log
# Data files
douyin_cdp_play_vv_*.json
douyin_cdp_play_vv_*.txt
# Chrome profiles and drivers
# 注意Chrome profile 包含大量缓存文件不应加入Git
scripts/config/chrome_profile/
drivers/*
!drivers/chromedriver.exe
# Environment variables
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db