django-mksuperuser

Make super user with fixtures or migrations


License
Other
Install
pip install django-mksuperuser==0.1.8

Documentation

django-mksuperuser

https://travis-ci.org/inirudebwoy/django-mksuperuser.svg?branch=master Documentation Status

Django app for lazy people. Creates superuser with no fuss.

login
admin
password
admin

Installation

Install from pip:

pip install django-mksuperuser

Add package to INSTALLED_APPS.:

INSTALLED_APPS += ('django_mksuperuser',)

When you create new Django project and syncdb or migrate (depending on version) new admin user is created with login 'admin' and password 'admin'. For all the lazy people!:

Django 1.7 > python manage.py migrate
Django 1.7 < python manage.py syncdb --noinput