Django Patterns
File: skills/django-patterns/SKILL.md
| Pattern | Purpose |
|---|---|
| Split settings | Environment-specific configuration |
| Custom QuerySet | Reusable, chainable queries |
| Service Layer | Business logic separation |
| select_related/prefetch_related | N+1 prevention |
| Caching | Performance optimization |
Remember: Structure and organization matter more than concise code for production Django apps.