django-workflow
Installation
SKILL.md
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.
Django Workflow
Tool Grid
| Task | Tool | Command |
|---|---|---|
| Lint | Ruff | uv run ruff check . |
| Format | Ruff | uv run ruff format . |
| Type check | django-stubs + mypy | uv run mypy . |
| Security | bandit | uv run bandit -r . |
| Test | pytest-django | uv run pytest |
| Migrations | squawk | squawk migrations/*.sql |
| Dev server | Django | uv run python manage.py runserver |