Reusable Django Packages/Apps: Difference between revisions

From Littledamien Wiki
Jump to navigation Jump to search
(Created page with "== Overview == Notes on workflow and best practices for creating and maintaining reusable packages/apps in Django.<ref>[https://docs.djangoproject.com/en/1.8/intro/reusable-a...")
(No difference)

Revision as of 17:46, 1 September 2015

Overview

Notes on workflow and best practices for creating and maintaining reusable packages/apps in Django.[1]

Workflow

Confirming the version of an installed app

Use the pip show command, e.g.:

$ pip show django-contact_info

Notes

  1. How to write reusable apps - Django Documentation