All notable changes to django-keel will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Copier-based Django project template with flexible configuration options
- Django 5.2/6.0 with Python 3.12/3.13/3.14 support
- Multiple package managers: uv, Poetry
- Split settings structure: base, dev, test, prod
- 12-Factor App compliance with environment-based configuration
- API frameworks: Django REST Framework, Strawberry GraphQL, both, or none
- Frontend: HTMX + Tailwind CSS, Next.js, or headless
- Frontend bundling for HTMX+Tailwind: Vite (production-ready) or CDN (simple)
- Authentication: django-allauth, JWT, or both
- Celery: Traditional async tasks with Redis broker and Celery Beat
- Temporal: Durable workflow orchestration for complex multi-step processes
- Both: Use Celery and Temporal together for different use cases
- None: Skip background task setup entirely
- Kubernetes: Enterprise-scale with Helm charts and Kustomize overlays
- AWS ECS Fargate: Serverless containers with Terraform
- Fly.io: Global edge deployment with automatic SSL
- Render: One-click PaaS deployment from GitHub
- AWS EC2: Full control VMs with Ansible provisioning
- Docker: Universal container deployment with docker-compose
- Django Channels for WebSockets
- Stripe payment integration with billing app
- Two-factor authentication with django-otp
- Internationalization with django-parler
- Search: PostgreSQL Full-Text or OpenSearch
- Storage: Local (Whitenoise), AWS S3, GCS, or Azure
- Three levels: minimal, standard, full
- Structured JSON logging
- Sentry error tracking
- OpenTelemetry instrumentation
- Prometheus metrics
- Health check endpoints with django-alive
- SOPS for encrypted secrets management
- Security profiles: standard or strict
- Content Security Policy with django-csp
- Rate limiting and brute-force protection
- Ruff for linting and formatting
- mypy for type checking
- pre-commit hooks
- pytest test suite
- Justfile with 50+ common tasks
- Infrastructure validation commands
- GitHub Actions workflow template
- GitLab CI workflow template
- Python + Django version matrix testing to verify all supported combinations
- Django 5.2 and 6.0 support
- Python 3.12, 3.13, and 3.14 support
- ReadTheDocs integration with MkDocs Material theme
- Getting started guides
- Feature comparison tables
- Deployment guides for all platforms
- Background tasks decision guide
- Contributing guidelines
- Background tasks configuration:
background_tasksparameter with options: "celery", "temporal", "both", or "none" copier.ymlUX enhancements:- Choice fields now display user-friendly labels instead of raw values
project_nameandproject_descriptionuse placeholders with non-empty validatorsdeployment_targetsconverted to multiselect field
- Docker development on Linux: Use host user's UID/GID in docker-compose to prevent permission errors with volume mounts
- Clarified development workflow documentation to distinguish Docker vs local development approaches