blob: 1be7663c9cd37e2b3d0387d5109905c0f4b0c425 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Please don't edit this file unless you really know what you are doing.
# The configuration is now in conf.py
from doit.reporter import ExecutedOnlyReporter
from nikola.nikola import Nikola
import conf
DOIT_CONFIG = {
'reporter': ExecutedOnlyReporter,
'default_tasks': ['render_site'],
}
SITE = Nikola(**conf.__dict__)
def task_render_site():
return SITE.gen_tasks()
|