媒体与静态文件
分离 staticfiles/、media/ 与 collectstatic 产物。
Explore resourceProfessional .gitignore tools
Django project template
Using GitIgnore.pro fallback template because the official template was unavailable during generation.
# Django .gitignore template
# Generated by GitIgnore.pro
# Logs
*.log
logs/
# Dependencies
node_modules/
vendor/
# Build outputs
build/
dist/
out/
# Cache
.cache/
*.tmp
# Environment variables
.env
.env.local
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db.gitignore in your project root分离 staticfiles/、media/ 与 collectstatic 产物。
Explore resource忽略 SQLite dump、logs 与临时备份。
Explore resourceCI/CD 中确认 env 与 migration 缓存被隔离。
Explore resource集合虚拟环境、静态资源、Celery/Redis 的忽略规则。