[Django]-Django : custom management command not registered using app config

0👍

The AppConfig.name attribute needs to contain full path of the app.

Your default_app_config starts with myproject.myapp., so AppConfig.name should be myproject.myapp.

Leave a comment