Files
JobRadar/.gitignore
2026-08-14 15:12:05 +08:00

51 lines
573 B
Plaintext

# Python 字节码与缓存
__pycache__/
*.py[cod]
*$py.class
# Python 构建与包文件
build/
dist/
*.egg-info/
.eggs/
# 虚拟环境
.venv/
venv/
env/
# Django 本地运行数据
db.sqlite3
db.sqlite3-journal
media/
staticfiles/
# 测试、覆盖率和类型检查缓存
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/
# 本地配置、密钥与日志
.env
.env.*
!.env.example
*.log
logs/
# IDE 与编辑器
.idea/
.vscode/
*.swp
*.swo
# 操作系统文件
.DS_Store
Thumbs.db
Desktop.ini
# Playwright 本地产物
playwright-report/
test-results/