view piecrust/wsgiutil/__init__.py @ 877:d6d35b2efd04

bake: Rename "pass" to "step" and make the page pipeline use different steps. That pipeline is now first loading all pages, and then rendering full pages unless they trigger a sub-render.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 15 Jun 2017 22:16:23 -0700
parents 81d9c3a3a0b5
children b4156f5d4368
line wrap: on
line source

from piecrust.serving.server import WsgiServer


def get_app(root_dir, cache_key='prod', enable_debug_info=False):
    app = WsgiServer(root_dir,
                     cache_key=cache_key,
                     enable_debug_info=enable_debug_info)
    return app