Mercurial > piecrust2
view piecrust/wsgiutil/__init__.py @ 615:cbb170d9c894
admin: Improve publish logs showing as alerts in the admin panel.
* Don't show stuff that happened before the page was opened.
* Skinning tweaks.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 04 Feb 2016 21:50:18 -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