Running In Production¶
Although you can use app.run() in order start up your service, it is only recommended for local development.
We encourage to use gunicron for production use.
gunicorn with gevent is battle-tested works well for most use-cases:
Gunicorn Installation¶
$ pip install gunicorn[gevent]