diff --git a/Manifest.in b/Manifest.in index c43a84d9..54a7ae35 100644 --- a/Manifest.in +++ b/Manifest.in @@ -1,3 +1,2 @@ include LICENSE -include README.txt -include README.md \ No newline at end of file +include README.txt \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index 22be446e..00000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -gunicorn - Green Unicorn -======================== - -The beginnigs of a port of [Unicorn](http://unicorn.bogomips.org/) in Python. \ No newline at end of file diff --git a/README.txt b/README.txt index ae929f6f..1691355b 100644 --- a/README.txt +++ b/README.txt @@ -1,2 +1,31 @@ gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and nothing else. -This is a port of Unicorn (http://unicorn.bogomips.org/) in Python. \ No newline at end of file +This is a port of Unicorn (http://unicorn.bogomips.org/) in Python. + + +Install +------- + +Run command : + + $ python setup.py install + + +Use gunicorn: +------------- + + $ gunicorn --help + Usage: gunicorn [OPTIONS] APP_MODULE + + Options: + --host=HOST Host to listen on. [127.0.0.1] + --port=PORT Port to listen on. [8000] + --workers=WORKERS Number of workers to spawn. [1] + -h, --help show this help message and exit + + +Eample with test app : + + $ cd examples + $ gunicorn --workers=2 test:app + +