Ticket #3319: django-admin.diff

File django-admin.diff, 845 bytes (added by James Bennett, 18 years ago)

Patch which adds documentation for the missing options

  • docs/django-admin.txt

     
    138138
    139139Executes the equivalent of ``sqlall`` for the given appnames.
    140140
     141reset [appname appname ...]
     142---------------------------
     143
     144Executes the equivalent of ``sqlreset`` for the given appnames.
     145
     146runfcgi [options]
     147-----------------
     148
     149Runs the project as a FastCGI application. See the `FastCGI deployment documentation`_
     150for a list of the available options. Requires the FastCGI module from `flup`_.
     151
     152.. _FastCGI deployment documentation http://www.djangoproject.com/documentation/fastcgi/
     153.. _flup http://www.saddi.com/software/flup/
     154
    141155runserver [optional port number, or ipaddr:port]
    142156------------------------------------------------
    143157
Back to Top