Mercurial > piecrust2
diff 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 diff
--- a/piecrust/__init__.py Wed Dec 25 22:16:46 2013 -0800 +++ b/piecrust/__init__.py Sun Aug 10 23:43:16 2014 -0700 @@ -0,0 +1,21 @@ + +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/' +