view piecrust/wsgiutil/__init__.py @ 627:6c205066067a

admin: Fix responsive layout. * Use a fluid Bootstrap container to not get pops, and prevent problems with the side navigation messing up widths. * Fix button layout on the edit page view.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 08 Feb 2016 23:27:41 -0800
parents cc6f3dbe3048
children 81d9c3a3a0b5
line wrap: on
line source

from piecrust.serving.server import WsgiServer


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