* instead of putting configuration files such as `settings.py`, `wsgi.py`,
and the root `urls.py` in `my_project/my_project`, use `my_project/config`
* start the project with a custom User model app, `users`
Over the years, I've taught or tutored over 100 Djangonauts starting their
first project. These two pain points came up the most frequently. Having
to explain and distinguish between two directories with the same name is a
constant pain point in the teaching process - "cd into my_project ... no,
the other one!"
It is sometimes better to show rather than tell, so following our own
documentation and including a custom User model with the initial project
template reinforces the best practice that we explicitly point out in the
documentation.
--
Ticket URL: <https://code.djangoproject.com/ticket/33650>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.