8👍
Cookiecutter Django renders a Django project, and included with the files is a manage.py
module. If you have Django installed, you can just call python manage.py startapp <app_name>
and it should just work.
30👍
For the sake of completeness, I would like to add that project-specific apps should go into the second level, also when using Cookiecutter Django.
There is a GitHub issue about this, where a project maintainer explains the situation.
What you should do is the following:
1 – create the
<name-of-the-app>
app withpython manage.py startapp
2 – move<name-of-the-app>
directory to<project_slug>
directory
3 – edit<project_slug>/<name-of-the-app>/apps.py
and changename = "<name-of-the-app>"
toname = "<project_slug>.<name-of-the-app>"
4 – add"<project_slug>.<name-of-the-app>.apps.<NameOfTheAppConfigClass>"
toLOCAL_APPS
inconfig/settings/base.py
- You cannot add messages without installing django.contrib.messages.middleware.MessageMiddleware
- Adding forgot-password feature to Django admin site
2👍
This is a good question as it is recommended to create a new app for every feature.Solution to this would be to call manage.py from the project directory. The call will look like this:
python ../manage.py startapp <name_of_app>
You would still need to rename your app.py
and you need to add the app settings/base.py
under local apps.