Is there a command to create an application using cookiecutter-django?

Once the Django project was created using cookiecutter-django, is there a command, for example python manage.py startapp <app_name>, instead of writing a new application from scratch?

+4
source share
1 answer

Django's cookiecutter displays a Django project, and it includes files manage.py. If you have Django installed, you can just call python manage.py startapp <app_name>it and it should just work.

+4
source

Source: https://habr.com/ru/post/1656615/


All Articles