up vote 17 down vote favorite
11
share [g+] share [fb]

My project is in early development. I frequently delete the database and run manage.py syncdb to set up my app from scratch.

Unfortunately, this always pops up:

You just installed Django's auth system, which means you don't have any superusers defined.
Would you like to create one now? (yes/no):

Then you have supply a username, valid email adress and password. This is tedious. I'm getting tired of typing test\nx@x.com\ntest\ntest\n.

How can I automatically skip this step and create a user programatically when running manage.py syncdb ?

link|improve this question

feedback

7 Answers

up vote 8 down vote accepted

If you want the ability — as I do — to really start with a fresh database without getting asked that superuser question, then you can just de-register the signal handler that asks that question. Check out the very bottom of the file:

django/contrib/auth/management/__init__.py

to see how the registration of the superuser function gets performed. I found that I could reverse this registration, and never get asked the question during "syncdb", if I placed this code in my "models.py":

from django.db.models import signals
from django.contrib.auth.management import create_superuser
from django.contrib.auth import models as auth_app

# Prevent interactive question about wanting a superuser created.  (This
# code has to go in this otherwise empty "models" module so that it gets
# processed by the "syncdb" command during database creation.)

signals.post_syncdb.disconnect(
    create_superuser,
    sender=auth_app,
    dispatch_uid = "django.contrib.auth.management.create_superuser")

I am not sure how to guarantee that this code gets run after the Django code that does the registration. I had thought that it would depend on whether your app or the django.contrib.auth app gets mentioned first in INSTALLED_APPS, but it seems to work for me regardless of the order I put them in. Maybe they are done alphabetically and I'm lucky that my app's name starts with a letter later than "d"? Or is Django just smart enough to do its own stuff first, then mine in case I want to muck with their settings? Let me know if you find out. :-)

link|improve this answer
Good stuff! Thanks. – a paid nerd Oct 23 '09 at 3:21
Finally implemented this and added a hook to create my own test user (if settings.DEBUG is True) automatically. Thanks again! – a paid nerd Dec 5 '09 at 4:53
feedback

Instead of deleting your entire database, just delete the tables of your app before running the syncdb

This will accomplish it for you in a single line (per app):

python manage.py sqlclear appname | python manage.py dbshell

The first command will look at your app and generate the required SQL to drop the tables. This output is then piped to the dbshell to execute it.

After its done, run your syncdb to recreate the tables:

python manage.py syncdb
link|improve this answer
I like this answer. Thanks for the suggestion! – ropable Jul 19 '10 at 4:15
feedback

I know the question has been answered already but ...

A Much simpler approach is to, once a super user has been created, to dump the auth module in a json file

 ./manage.py dumpdata --indent=2 auth > initial_data.json

You can also dumb the session

./manage.py dumpdata --indent=2 sessions

You can then append the session info to the auth module dump (and probably increase the expire_date so it does not expire... ever ;-).

From then, you can use

/manage.py syncdb --noinput

to load the superuser and his session when creating the db with no interactive prompt asking you about a superuser.

Stolen from : http://www.arthurkoziel.com/2008/09/04/automatical-superuser-creation-django/

link|improve this answer
feedback

I've overcome this feature using south

Its a must have for any django developer.

South is a tool designed to help migrate changes over to the live site without destroying information or database structure. The resulting changes can be tracked by south and using the generated python files - can perform the same actions on an alternative database.

During development, I use this tool to git track my database changes - and to make a change to the database without the need to destroy it first.

  1. easy_install south
  2. Add 'south' to your installed apps

Proposing first time run of south on an app.

$ python manage.py schemamigration appname --init

This will initiate schema detection on that app.

$ python manage.py migrate appname

This will apply the model changes

  • The database will have the new models.

Changing a model after the first run

$ python manage.py schemamigration appname --auto

$ python manage.py migrate appname


Models will have changed - data is not destroyed. Plus south does much more...

link|improve this answer
are there any news on --auto support in south? thanks. – alem0lars Aug 13 '11 at 7:39
feedback

My solution to this was to just not delete that auth tables when wiping out my database.

link|improve this answer
feedback

Take a look at the dumpdata management command. For instance:

python manage.py dumpdata > initial_data.json

If this file, called a fixture, is named initial_data (.xml or .json), then the syncdb command will pick it up and populate your tables accordingly. It will still ask you if you want to create a user, but I believe you may safely answer "no", after which point it will populate the database based on your fixture.

More info on this can be found in the docs.

link|improve this answer
You can append --noinput option to syncdb to shortcut the interactive prompt if you have super user and session info in your initial_data.json – philgo20 Mar 25 '10 at 14:10
feedback

I'm using sqlite as a dev database. After changing model classes, just drop the corresponding tables with sqlite manager (a firefox plugin, open to inspect the data anyways) and run manage.py syncdb to recreate what's missing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.