view piecrust/wsgiutil/__init__.py @ 451:838f3964f400

bake: Optimize the bake by not using custom classes for passing info. See previous changeset about pickling performance between processes. Now just use plain standard structures, or the new `fastpickle` when needed.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 06 Jul 2015 21:30:49 -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