update README.

This commit is contained in:
Benoit Chesneau 2010-01-31 03:55:20 +01:00
parent 8dd0f9e881
commit ae0416619f

View File

@ -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
+++++++++++++++++++++++++