Mercurial > piecrust2
view piecrust/wsgiutil/__init__.py @ 486:aae241804096
themes: Don't fixup template directories, it's actually better as-is.
Prepending `theme/` is not too much trouble, and directories without that are
useful for handling possible user overrides.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 22 Jul 2015 20:00:14 -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