Django Management Tools

https://img.shields.io/pypi/v/django-management-tools.svg Gitlab pipeline status Documentation Status

Collection of tools to extend Django’s manage.py command.

Features

  • python manage.py createadmin –user <username> –password <password> –email <emailaddress>
    username/password defaults to admin/admin email default to nothing

Installation

Install django-management-tools from pip

$ pip install django-vault-helpers

Add the new packages to your installed apps.

INSTALLED_APPS = [
    ...
    'managementtools',
    ...
]

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.