From 3e9c41d03bd531110114ee3a5075f3d9eac56b8a Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Mon, 26 Feb 2007 21:36:14 +0000 Subject: [PATCH] Fixed #3319: Added docs to django-admin.txt about reset and runfcgi. Thanks, Ubernostrum. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4623 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/django-admin.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/django-admin.txt b/docs/django-admin.txt index cf15168030..96316702c8 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -143,6 +143,20 @@ install [appname appname ...] Executes the equivalent of ``sqlall`` for the given appnames. +reset [appname appname ...] +--------------------------- +Executes the equivalent of ``sqlreset`` for the given appnames. + +runfcgi [options] +----------------- +Starts a set of FastCGI processes suitable for use with any web server +which supports the FastCGI protocol. See the `FastCGI deployment +documentation`- for details. Requires the Python FastCGI module from +`flup`_. + +.. _FastCGI deployment documentation: ../fastcgi/ +.. _flup: http://www.saddi.com/software/flup/ + runserver [optional port number, or ipaddr:port] ------------------------------------------------