On 2/19/07, kbochert <[EMAIL PROTECTED]> wrote:
> Is there a was to install the contrib.admin app without the
> contrib.auth app??

No; the admin app requires the auth app so that it can allow
authorized users to log in.

> While learning, I am eraseing the database and doing manage.py syncdb
> a lot, and it would be real nice to have it come up without having to
> enter username email etc. each time.

You can provide a SQL file containing an INSERT statement which will
add a user account, and have it automatically executed by syncdb; see
the documentation on initial SQL:

http://www.djangoproject.com/documentation/django_admin/#sqlinitialdata-appname-appname

Generally, you'll just want to copy the values out of the admin page
for your user account, and write an INSERT which will add that data to
the DB.

-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to