I just started to learn Falcon (http://falcon.readthedocs.org/en/latest/user/quickstart.html) but it need a web server running and docs suggesting use uwsgi or gunicorn.
though they have mentioned that how to use it with gunicorn
$ pip install gunicorn #install
$ gunicorn things:app #and run app through gunicorn.
But I want to run this sample app with uwsgi. but I have no clue how to.
I have installed it pip install uwsgi
also gevent
as suggested here http://falcon.readthedocs.org/en/latest/user/install.html
but what now. somebody guide me.
uwsgi --http :9000 --wsgi-file things.py --callable app
– Nathalie