[sdd-farmer](https://github.com/justinbot/sdd-farmers) is a django project that has achieved many best practices in Django dev, including: - Use of generic class-based view - Use of mixins and middlewares. - Use of [extra_views.CreateWithInlinesView](https://django-extra-views.readthedocs.io/en/latest/views.html#createwithinlinesview-and-updatewithinlinesview). Could use for managing repo image on repo creation. - Use of django-tagulous #97 - Use of [django-extensions](https://django-extensions.readthedocs.io/); Potential use: [Model extensions](https://django-extensions.readthedocs.io/en/latest/model_extensions.html) and admin commands like [email export](https://django-extensions.readthedocs.io/en/latest/export_emails.html), [delete_squashed_migrations](https://django-extensions.readthedocs.io/en/latest/delete_squashed_migrations.html), etc... - Use of [django-crispy-forms](http://django-crispy-forms.readthedocs.io/en/latest/), which we are currently using but could add in [crispy form helper](http://django-crispy-forms.readthedocs.io/en/latest/form_helper.html). Example use: [sdd-farmers](https://github.com/justinbot/sdd-farmers/blob/78188644b5b3c7a080ed2ebee0892115a5ad81af/market/market/apps/board/forms.py#L12)
sdd-farmer is a django project that has achieved many best practices in Django dev, including: