How to get a list of all custom Django commands in a project?

I want to find a custom command in a project with many apps, how to get a list of all commands from all apps?

>Solution :

This command will list all the custom or existing command of all installed apps:

python manage.py help

Leave a Reply