view piecrust/wsgiutil/__init__.py @ 783:a9f4a6e60b0b

admin: Fix various crashes caused by incorrect Blueprint setup.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 28 Aug 2016 20:48:05 -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