Mercurial > piecrust2
view piecrust/wsgiutil/__init__.py @ 388:3890353d3e5a 2.0.0a10
setup: Add `requirements.txt` to `MANIFEST.in` so it can be used by the setup.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 15 May 2015 23:41:52 -0700 |
parents | d40b744a9d99 |
children | cc6f3dbe3048 |
line wrap: on
line source
from piecrust.serving.server import Server def get_app(root_dir, sub_cache_dir='prod', enable_debug_info=False): server = Server(root_dir, sub_cache_dir=sub_cache_dir, enable_debug_info=enable_debug_info) app = server.getWsgiApp() return app