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

Time:03-29

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

CodePudding user response:

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

python manage.py help

CodePudding user response:

Check Out this Link you get all the commands List here : https://www.google.com/search?q=django commands list&sxsrf=APq-WBv4RYqVWQpJUuAePsrTvcHvLokvlg:1648480699214&ei=u9FBYpzdDKeHwPAPwt2qsAY&ved=0ahUKEwjcpvuTjen2AhWnAxAIHcKuCmYQ4dUDCA4&uact=5&oq=django commands list&gs_lcp=Cgdnd3Mtd2l6EAMyBQgAEIAEMgUIABCABDIGCAAQFhAeMgYIABAWEB46BwgjEOoCECc6BAgjECc6BQgAEJECOgsILhCABBDHARCjAjoICC4QgAQQ1AI6BAgAEEM6BwguENQCEEM6BAguEEM6CggAEIAEEIcCEBRKBAhBGABKBAhGGABQuApYhylg7ypoAXABeACAAYcBiAH0C5IBBDE5LjGYAQCgAQGwAQrAAQE&sclient=gws-wiz

  • Related