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

Viewed 336

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

1 Answers

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

python manage.py help
Related