14 lines
307 B
Python
14 lines
307 B
Python
import os
|
|
from envs import env
|
|
|
|
pages_root = 'data'
|
|
static_root = 'static'
|
|
default_template = 'page.html'
|
|
URL_PREFIX = "/"
|
|
FLATPAGES_EXTENSION = ".md"
|
|
FLATPAGES_AUTO_RELOAD = True
|
|
DEBUG = True
|
|
FLATPAGES_ROOT = os.path.abspath(pages_root)
|
|
DEFAULT_TEMPLATE = 'page.html'
|
|
PAGES_ROOT='data'
|
|
STATIC_ROOT='static' |