Django manage.py hook for starting gevent's WSGI server
Project description
This library adds a simple hook into Django’s manage.py to be able to start gevent’s WSGI server to serve the Django project.
Install
Install the library into your Python installation via pip:
pip install django-gevent-deploy
Then add the library into INSTALLED_APPS within Django’s project settings.py:
INSTALLED_APPS = ( ... 'django_gevent_deploy', )
Configuration
You may add two settings to your settings.py:
GEVENT_ADDR_PORT
Specifies what address and what port should be used for the gevent’s WSGI server. Must be a string and of the [[addr:]port] format:
8000 # default localhost:8000 127.0.0.1:8000
GEVENT_POOL_SIZE
Specifies the number of greenlets gevent can spawn for the server. Can be None or an integer value:
None # default 1 100
Usage
To start the gevent’s WSGI server, simply call rungevent in manage.py. The command accepts optional argumets which are the same as described in Configuration section. If the arguments are not provided, then the configuration from the settings.py is used, or default if settings.py is not configured.
$ python manage.py rungevent [[addr]:port] [pool_size]
Credits
Miroslav Shubernetskiy
License
This library is packaged with MIT license:
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-gevent-deploy-1.0.tar.gz
.
File metadata
- Download URL: django-gevent-deploy-1.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f5804312a117c11518de638ecc6762e71b30eb7d7e9e67dd1f5e31f84c438ab |
|
MD5 | 8889993c60b2ed61f88f1a0deaf3081e |
|
BLAKE2b-256 | 7d33a8cc7d0598df08064522be07de24997a2e41dc361f8c663c709896bcca21 |