diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2006-08-31 14:29:47 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2006-08-31 14:29:47 +0000 |
| commit | fc2d5f461f398bf048e8b821142019ddba9a677d (patch) | |
| tree | 17154155ca61084eff8083ca7da2fb543fdc9d2b /docs/django-admin.txt | |
| parent | d9883e1dec9c80c49749f798890ae5a3efd781f0 (diff) | |
Refs #2333 - Added more documentation for testing framework, and clarified some code as a result of trying to describe it.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3689 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/django-admin.txt')
| -rw-r--r-- | docs/django-admin.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt index b8bf2cef76..672200c5e7 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -345,6 +345,17 @@ setting the Python path for you. Displays a help message that includes a terse list of all available actions and options. +--noinput +--------- + +Inform django-admin that the user should NOT be prompted for any input. Useful if +the django-admin script will be executed as an unattended, automated script. + +--noreload +---------- + +Disable the use of the auto-reloader when running the development server. + --version --------- @@ -355,6 +366,17 @@ Example output:: 0.9.1 0.9.1 (SVN) +--verbosity +----------- + +Example usage:: + + django-admin.py syncdb --verbosity=2 + +Verbosity determines the amount of notification and debug information that +will be printed to the console. '0' is no output, '1' is normal output, +and `2` is verbose output. + Extra niceties ============== |
