Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <blockquote> <p>the required steps for a Django application? </p> </blockquote> <p>There are two required steps.</p> <p>Write the settings. Write the urls.py</p> <p>The rest of the steps are optional.</p> <blockquote> <p>This also serves as a checklist of things to do. </p> </blockquote> <p>Bad policy. You don't need a checklist of Django features. You need a collection of use cases or user stories which you must implement. </p> <p>For some reason, you've omitted the two most important and valuable features of Django. Configure the default admin interface and write unit tests. The default admin interface is very high value. Unit testing is absolutely central. </p> <p>You do it like this.</p> <ol> <li><p>Gather use cases.</p></li> <li><p>Prioritize the use cases.</p></li> <li><p>Define the actors. The classes of actors becomes groups in the security model.</p></li> <li><p>Define enough "applications" to satisfy the first release of use cases. Define the url structure. Cool URL's don't change. </p></li> <li><p>Build the first use case: models (including security), admin, urls, tests, forms, views and templates. Note that these are the file names (models.py, admin.py, ...) except for templates. Also note that forms and admin should be defined in separate modules even though this isn't required. Also note that templates will be split between a generic templates directory for top-level stuff and application-specific templates.</p></li> <li><p>Build the second use case: models (including security), admin, urls, tests, forms, views and templates.</p></li> </ol> <p>...</p> <p>n. Package for release. Tweak up the settings. Configure database and mod-wsgi</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload