django▌
14 indexed skills · max 10 per page
django-security
affaan-m/everything-claude-code · Backend
Django security best practices covering authentication, authorization, CSRF, SQL injection, and XSS prevention. \n \n Provides production-ready settings configurations including HTTPS enforcement, secure cookies, HSTS headers, and password validation with minimum 12-character requirements \n Covers authentication patterns: custom user models, Argon2 password hashing, session management, and role-based access control (RBAC) \n Includes authorization strategies: Django permissions, custom permissi
django-patterns
affaan-m/everything-claude-code · Backend
Production-grade Django architecture patterns for scalable, maintainable applications. \n \n Covers project structure with split settings (base, development, production, test), custom managers and QuerySets, and service layer separation for business logic \n Includes Django REST Framework patterns: serializers with validation, ViewSets with custom actions, filtering, searching, and pagination \n Demonstrates ORM best practices: select_related and prefetch_related for N+1 prevention, bulk operati
django-application
aj-geddes/useful-ai-prompts · Backend
Build comprehensive Django web applications with proper model design, view hierarchies, database operations, user authentication, and admin functionality following Django conventions and best practices.
django-verification
affaan-m/everything-claude-code · Backend
Comprehensive pre-deployment verification pipeline for Django projects covering migrations, linting, tests, security, and configuration. \n \n Runs 12 sequential phases: environment validation, code quality checks (mypy, ruff, black, isort), migration safety, test coverage analysis, security scanning (pip-audit, bandit, gitleaks), and Django-specific configuration verification \n Includes coverage targets by component (models 90%+, views 80%+, overall 80%+) and pre-deployment checklist covering