I would like to customize the files and folders created when running
python manage.py startapp appname
I find doing some things over and over again and I think it would be neat, if my customizations are present when I create a new app.
Do you know where I can customize the default files when an app is created?
The files are in
django/conf/app_templateanddjango/conf/project_templatefor the app and project files respectively.I don’t think there is a ways to override this location without either creating your own
startapp/startprojectcommand or without modifyingdjango/core/management/base.py.