mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
- Add .hypothesis/ directory to .gitignore to exclude Hypothesis property testing cache files - Prevents test cache artifacts from being tracked in version control - Improves repository cleanliness by ignoring generated test data
53 lines
598 B
Plaintext
53 lines
598 B
Plaintext
# Python
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
*.so
|
||
.Python
|
||
*.egg-info/
|
||
dist/
|
||
build/
|
||
.hypothesis/ # Hypothesis 属性测试缓存
|
||
|
||
# 虚拟环境
|
||
venv/
|
||
env/
|
||
ENV/
|
||
|
||
# Django
|
||
*.log
|
||
db.sqlite3
|
||
db.sqlite3-journal
|
||
/media
|
||
/staticfiles
|
||
|
||
# 运行时文件(Flower、PID)
|
||
/var/*
|
||
!/var/.gitkeep
|
||
flower.db
|
||
pids/
|
||
script/dev/.pids/
|
||
|
||
# 扫描结果和日志(后端数据)
|
||
/results/*
|
||
!/results/.gitkeep
|
||
/logs/*
|
||
!/logs/.gitkeep
|
||
|
||
# 环境变量(敏感信息)
|
||
.env
|
||
.env.development
|
||
.env.production
|
||
.env.staging
|
||
# 只提交模板文件:.env.*.example
|
||
|
||
# IDE
|
||
.vscode/
|
||
.idea/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
|
||
# macOS
|
||
.DS_Store
|