From ae0416619f3cd5c4ec6957b50240077e37588cc2 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Sun, 31 Jan 2010 03:55:20 +0100 Subject: [PATCH] update README. --- README.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.rst b/README.rst index 2b8781dd..657c028d 100644 --- a/README.rst +++ b/README.rst @@ -51,6 +51,19 @@ For django projects use the `gunicorn_django` command:: $ cd yourdjangoproject $ gunicorn_django --workers=2 +or use `run_gunicorn` command. + +add `gunicorn` to INSTALLED_APPS in the settings file:: + + INSTALLED_APPS = ( + ... + "gunicorn", + ) + +Then run:: + + python manage.py run_gunicorn + Paste-compatible projects +++++++++++++++++++++++++