Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 638 Bytes

index.rst

File metadata and controls

18 lines (11 loc) · 638 Bytes

Deploying Jivago Applications

Jivago implements the WSGI interface for web applications. Therefore, a WSGI server is required for serving requests. While developing, Werkzeug is the recommended WSGI server, as it is easily started and provides convenient debug features.

werkzeug.py

Running in Production

For production purposes, other WSGI servers are available, such as gunicorn and uwsgi. See here for a complete deployment example for heroku.