mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
3152bdaeb3
-serve, watch + live reload for docs + code file changes -update project makefile + make.bat -separate _source and _build -add packages and paths to use autodoc -edit/add documentation with examples (both at django-cookiecutter and inside generated project) -add formatted comments in User model for pickup by Sphinx apidoc -serve docs from a separate docs container for docker build
16 lines
446 B
ReStructuredText
16 lines
446 B
ReStructuredText
.. _users:
|
||
|
||
Users
|
||
======================================================================
|
||
|
||
Starting a new project, it’s highly recommended to set up a custom user model,
|
||
even if the default User model is sufficient for you.
|
||
|
||
This model behaves identically to the default user model,
|
||
but you’ll be able to customize it in the future if the need arises.
|
||
|
||
.. automodule:: {{cookiecutter.project_slug}}.users.models
|
||
:members:
|
||
:noindex:
|
||
|