Mercurial > piecrust2
comparison 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 |
comparison
equal
deleted
inserted
replaced
2:40fa08b261b9 | 3:f485ba500df3 |
---|---|
1 | |
2 APP_VERSION = '2.0.0alpha' | |
3 | |
4 CACHE_DIR = '_cache' | |
5 CONTENT_DIR = '_content' | |
6 TEMPLATES_DIR = '_content/templates' | |
7 PLUGINS_DIR = '_content/plugins' | |
8 THEME_DIR = '_content/theme' | |
9 | |
10 CONFIG_PATH = '_content/config.yml' | |
11 THEME_CONFIG_PATH = '_content/theme_config.yml' | |
12 | |
13 DEFAULT_FORMAT = 'markdown' | |
14 DEFAULT_TEMPLATE_ENGINE = 'jinja2' | |
15 DEFAULT_POSTS_FS = 'flat' | |
16 DEFAULT_DATE_FORMAT = '%b %d, %Y' | |
17 DEFAULT_PLUGIN_SOURCE = 'http://bitbucket.org/ludovicchabant/' | |
18 DEFAULT_THEME_SOURCE = 'http://bitbucket.org/ludovicchabant/' | |
19 | |
20 PIECRUST_URL = 'http://bolt80.com/piecrust/' | |
21 |