Django 5 Tools to Enhance Your Django Development Workflow Pytest-DjangoWith pytest-django, you can take advantage of pytest's ecosystem in your Django project seamlessly. Besides the better API, I especially like the --nomigrations flag because it allows running tests without migrating the database. Perfect for TDD. Also, Django's assertions are still available: from pytest_
Django Organizing Django and React with Yarn Workspaces Django and React can be daunting to put together. One recipe I like for monorepos is using Yarn workspaces. The folder structure provided by create-react-app encapsulates all the frontend, and it doesn't feel connected or aligned to the Django project. Workspaces allow organizing the
Django Deep Dive into Django's Pagination When paginating with Django Paginators, the code is not just splitting the content on the UI, but it is trully querying the database in smaller chunks.