Mercurial > piecrust2
view piecrust/__init__.py @ 3:f485ba500df3
Gigantic change to basically make PieCrust 2 vaguely functional.
- Serving works, with debug window.
- Baking works, multi-threading, with dependency handling.
- Various things not implemented yet.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 10 Aug 2014 23:43:16 -0700 |
parents | a212a3f2e3ee |
children | 485682a6de50 |
line wrap: on
line source
APP_VERSION = '2.0.0alpha' CACHE_DIR = '_cache' CONTENT_DIR = '_content' TEMPLATES_DIR = '_content/templates' PLUGINS_DIR = '_content/plugins' THEME_DIR = '_content/theme' CONFIG_PATH = '_content/config.yml' THEME_CONFIG_PATH = '_content/theme_config.yml' DEFAULT_FORMAT = 'markdown' DEFAULT_TEMPLATE_ENGINE = 'jinja2' DEFAULT_POSTS_FS = 'flat' DEFAULT_DATE_FORMAT = '%b %d, %Y' DEFAULT_PLUGIN_SOURCE = 'http://bitbucket.org/ludovicchabant/' DEFAULT_THEME_SOURCE = 'http://bitbucket.org/ludovicchabant/' PIECRUST_URL = 'http://bolt80.com/piecrust/'