Search code examples
pythondjangocommanddjango-extensions

Running commands with django-extensions


I have intalled django-extensions in my django project, and I would like to use the reset_db command.

However, I can't access any of the extended commands. When running ./manage.py help , I only see the commands associated with django, nothing from django-extensions.

I don't really know what I am doing wrong... Any suggestions ?


Solution

  • Add the app to the installed apps list:

    INSTALLED_APPS = (
        ...
        'django_extensions',
    )