forked from platypush/platypush
Replaced command-line uwsgi wrapper in the backend.http docs with gunicorn
gunicorn makes it easier to set up a uWSGI wrapper around the web application, and it's easier to install and document than handling uwsgi as an external system dependency.
This commit is contained in:
parent
20fc3d91fc
commit
fa708663e1
3 changed files with 13 additions and 13 deletions
4
setup.py
4
setup.py
|
@ -78,9 +78,7 @@ setup(
|
|||
# Support for Pushbullet backend and plugin
|
||||
'pushbullet': ['pushbullet.py @ https://github.com/rbrcsk/pushbullet.py/tarball/master'],
|
||||
# Support for HTTP backend
|
||||
'http': ['flask', 'bcrypt', 'python-magic'],
|
||||
# Support for uWSGI HTTP backend
|
||||
'uwsgi': ['flask', 'uwsgi', 'bcrypt', 'python-magic'],
|
||||
'http': ['flask', 'bcrypt', 'python-magic', 'gunicorn'],
|
||||
# Support for MQTT backends
|
||||
'mqtt': ['paho-mqtt'],
|
||||
# Support for RSS feeds parser
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue